UNPKG
todomvc
Version:
latest (0.1.1)
0.1.1
0.1.0
> Helping you select an MV\* framework
todomvc
/
examples
/
backbone
/
js
/
app.js
13 lines
(10 loc)
•
197 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/*global $ */
/*jshint unused:false */
var
app = app || {};
var
ENTER_KEY
=
13
;
var
ESC_KEY
=
27
; $(
function
(
) {
'use strict'
;
// kick things off by creating the `App`
new
app.
AppView
(); });