UNPKG
todomvc
Version:
latest (0.1.1)
0.1.1
0.1.0
> Helping you select an MV\* framework
todomvc
/
examples
/
exoskeleton
/
js
/
app.js
13 lines
(10 loc)
•
251 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
ESCAPE_KEY
=
27
;
document
.
addEventListener
(
'DOMContentLoaded'
,
function
(
) {
'use strict'
;
// kick things off by creating the `App`
new
app.
AppView
(); },
false
);