diff options
author | Eric Guzman | 2012-06-11 13:28:42 -0700 |
---|---|---|
committer | Eric Guzman | 2012-06-11 13:28:42 -0700 |
commit | 3a4727ffc350216a434a7c6977b6a23653b77780 (patch) | |
tree | c5dff306f8803c36a16163ba5df1e7f492e762b5 /js/controllers/undo-controller.js | |
parent | d6b46ba496c9c8974ae39bb476aea35bcd1ddaf1 (diff) | |
parent | 337efc667372326ae2f9984d89a47bb151016774 (diff) | |
download | ninja-3a4727ffc350216a434a7c6977b6a23653b77780.tar.gz |
Merge branch 'binding' of github.com:dhg637/ninja-internal into binding
Diffstat (limited to 'js/controllers/undo-controller.js')
-rwxr-xr-x | js/controllers/undo-controller.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/js/controllers/undo-controller.js b/js/controllers/undo-controller.js index 19cfb6e6..8514df3d 100755 --- a/js/controllers/undo-controller.js +++ b/js/controllers/undo-controller.js | |||
@@ -113,20 +113,12 @@ exports.UndoController = Montage.create( Component, { | |||
113 | 113 | ||
114 | deserializedFromTemplate: { | 114 | deserializedFromTemplate: { |
115 | value: function(){ | 115 | value: function(){ |
116 | this.eventManager.addEventListener( "openDocument", this, false); | ||
117 | this.eventManager.addEventListener( "sendToUndo", this, false); | 116 | this.eventManager.addEventListener( "sendToUndo", this, false); |
118 | this.eventManager.addEventListener( "executeUndo", this, false); | 117 | this.eventManager.addEventListener( "executeUndo", this, false); |
119 | this.eventManager.addEventListener( "executeRedo", this, false); | 118 | this.eventManager.addEventListener( "executeRedo", this, false); |
120 | } | 119 | } |
121 | }, | 120 | }, |
122 | 121 | ||
123 | handleOpenDocument: { | ||
124 | value: function(undoQueue, redoQueue) { | ||
125 | // this._undoQueue = undoQueue; | ||
126 | // this._redoQueue = redoQueue; | ||
127 | } | ||
128 | }, | ||
129 | |||
130 | handleSendToUndo: { | 122 | handleSendToUndo: { |
131 | value: function(event) { | 123 | value: function(event) { |
132 | this.undoQueue.push(event.detail); | 124 | this.undoQueue.push(event.detail); |