Merge branch 'master' into gh-pages

Conflicts:
	javascripts/app.js
This commit is contained in:
2016-01-31 15:36:33 +08:00
13 changed files with 443 additions and 238 deletions
+5 -1
View File
@@ -22,8 +22,12 @@ Task
},
initialize: function() {
this.listView = new ListView();
listView = this.listView = new ListView();
this.input = $('#newTask');
// stop browser going back a page when jamming backspace
window.addEventListener('keydown',function(e){if(e.keyIdentifier=='U+0008'||e.keyIdentifier=='Backspace'){if(e.target==document.body){e.preventDefault();}}},true);
},
createNewTask: function(e) {