Revert "Revert "More performance improvements + etc.""

This commit is contained in:
Isiah Meadows 2015-12-16 11:04:07 -05:00
parent 897060d6ed
commit b2faa43f91
28 changed files with 3207 additions and 1326 deletions

13
bench/app/js/app.js Normal file
View file

@ -0,0 +1,13 @@
/* global m */
(function (app) {
"use strict"
app.ENTER_KEY = 13
app.ESC_KEY = 27
m.route.mode = "hash"
m.route(document.getElementById("todoapp"), "/", {
"/": app,
"/:filter": app
})
})(this.app || (this.app = {}))