diff options
author | Valerio Virgillito | 2012-02-21 14:32:17 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-02-21 14:32:17 -0800 |
commit | b1daf0b285a4a96bfd0086709c20e3682d75551a (patch) | |
tree | c6e8bcf8b7c0639a1e52009c3d1a89c95d2a91d6 /js/stage | |
parent | 10c5ca3b1ac764b611051dc590f3092f269b1bf6 (diff) | |
download | ninja-b1daf0b285a4a96bfd0086709c20e3682d75551a.tar.gz |
fixing the dirty flag and removing sass changes
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/stage')
-rwxr-xr-x | js/stage/stage-view.reel/stage-view.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/stage/stage-view.reel/stage-view.js b/js/stage/stage-view.reel/stage-view.js index 31f40d09..dc9980f0 100755 --- a/js/stage/stage-view.reel/stage-view.js +++ b/js/stage/stage-view.reel/stage-view.js | |||
@@ -98,9 +98,9 @@ exports.StageView = Montage.create(Component, { | |||
98 | onChange: function(){ | 98 | onChange: function(){ |
99 | var historySize = doc.editor.historySize(); | 99 | var historySize = doc.editor.historySize(); |
100 | if(historySize.undo>0){ | 100 | if(historySize.undo>0){ |
101 | doc.markEdited(); | 101 | doc.needsSave = true; |
102 | }else if(historySize.undo===0 && historySize.redo>0){ | 102 | }else if(historySize.undo===0 && historySize.redo>0){ |
103 | doc.markUnedited(); | 103 | doc.needsSave = false; |
104 | } | 104 | } |
105 | }, | 105 | }, |
106 | onCursorActivity: function() { | 106 | onCursorActivity: function() { |