From b2ef3025e5d73fae477bfaad48a04adb606f3bba Mon Sep 17 00:00:00 2001 From: Zachary Vance Date: Tue, 19 May 2015 17:24:51 -0700 Subject: [PATCH] Remove testing disabling of shortcuts --- dist/flowy.js | 2 +- dist/flowy.unwrapped.js | 2 +- src/views/todo.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/flowy.js b/dist/flowy.js index 9d8e6d2..c717510 100644 --- a/dist/flowy.js +++ b/dist/flowy.js @@ -72,7 +72,7 @@ var TodoView = Backbone.View.extend({ //"click > .checkbox": "toggleComplete", "input > .text": "textChange", "blur > .text": "render", // Because the model shouldn't update the view during active editing, add a re-render at the end - //"keydown > .text": "keydown", + "keydown > .text": "keydown", }, initialize: function() { this.childViewPositions = []; diff --git a/dist/flowy.unwrapped.js b/dist/flowy.unwrapped.js index ccb133b..7ca8ada 100644 --- a/dist/flowy.unwrapped.js +++ b/dist/flowy.unwrapped.js @@ -71,7 +71,7 @@ var TodoView = Backbone.View.extend({ //"click > .checkbox": "toggleComplete", "input > .text": "textChange", "blur > .text": "render", // Because the model shouldn't update the view during active editing, add a re-render at the end - //"keydown > .text": "keydown", + "keydown > .text": "keydown", }, initialize: function() { this.childViewPositions = []; diff --git a/src/views/todo.js b/src/views/todo.js index e1a2d3a..81cbb5c 100644 --- a/src/views/todo.js +++ b/src/views/todo.js @@ -10,7 +10,7 @@ var TodoView = Backbone.View.extend({ //"click > .checkbox": "toggleComplete", "input > .text": "textChange", "blur > .text": "render", // Because the model shouldn't update the view during active editing, add a re-render at the end - //"keydown > .text": "keydown", + "keydown > .text": "keydown", }, initialize: function() { this.childViewPositions = []; -- 2.47.3