aboutsummaryrefslogtreecommitdiff
path: root/js/controllers
diff options
context:
space:
mode:
authorAnanya Sen2012-02-28 15:33:35 -0800
committerAnanya Sen2012-02-28 15:33:35 -0800
commite0fab951e4f3869b04fd4a01f429a6654991cd68 (patch)
tree34de9dfb8bf769ad70d7d6ca16d603e91af26a27 /js/controllers
parent1766c6b17e2311fcd21c2be6608c7dcdc0a9b23a (diff)
downloadninja-e0fab951e4f3869b04fd4a01f429a6654991cd68.tar.gz
minor fixes in saving undo/redo stacks per document
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'js/controllers')
-rwxr-xr-xjs/controllers/undo-controller.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/controllers/undo-controller.js b/js/controllers/undo-controller.js
index 01853593..19cfb6e6 100755
--- a/js/controllers/undo-controller.js
+++ b/js/controllers/undo-controller.js
@@ -71,7 +71,7 @@ exports.UndoController = Montage.create( Component, {
71 /** 71 /**
72 * Undo Queue 72 * Undo Queue
73 */ 73 */
74 _undoQueue: { value: [], writable:true }, 74 _undoQueue: { value: []},
75 75
76 undoQueue: { 76 undoQueue: {
77 get: function() { 77 get: function() {
@@ -85,7 +85,7 @@ exports.UndoController = Montage.create( Component, {
85 /** 85 /**
86 * Redo Queue 86 * Redo Queue
87 */ 87 */
88 _redoQueue: { value: [], enumerable: false, writable:true }, 88 _redoQueue: { value: [], enumerable: false},
89 89
90 redoQueue: { 90 redoQueue: {
91 get: function() { 91 get: function() {
@@ -212,8 +212,8 @@ exports.UndoController = Montage.create( Component, {
212 212
213 clearHistory:{ 213 clearHistory:{
214 value: function(){ 214 value: function(){
215 this.undoQueue.splice(0, this.undoQueue.length); 215 this.undoQueue.length = 0;
216 this.redoQueue.splice(0, this.redoQueue.length); 216 this.redoQueue.length = 0;
217 } 217 }
218 } 218 }
219}); \ No newline at end of file 219}); \ No newline at end of file