UNPKG
todomvc
Version:
latest (0.1.1)
0.1.1
0.1.0
> Helping you select an MV\* framework
todomvc
/
examples
/
backbone_require
/
js
/
common.js
14 lines
(11 loc)
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*global define*/
'use strict'
;
define
([],
function
(
) {
return
{
// Which filter are we using?
TodoFilter
:
''
,
// empty, active, completed
// What is the enter key constant?
ENTER_KEY
:
13
,
ESCAPE_KEY
:
27
}; });