aboutsummaryrefslogtreecommitdiff
path: root/js/document
diff options
context:
space:
mode:
authorAnanya Sen2012-04-04 15:14:33 -0700
committerAnanya Sen2012-04-04 15:14:33 -0700
commitd5b429f4d1fad1f9b83e81d2d742d43ec39bd585 (patch)
tree219b269427fd6dd3887f7782192c932f2b468dad /js/document
parent8482e23cd9b8c4700b5130f2588e5eb24d376536 (diff)
downloadninja-d5b429f4d1fad1f9b83e81d2d742d43ec39bd585.tar.gz
[CR] Keep Save related menu items always enabled, if there is an open document
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'js/document')
-rwxr-xr-xjs/document/text-document.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/js/document/text-document.js b/js/document/text-document.js
index 54a53999..2574b67c 100755
--- a/js/document/text-document.js
+++ b/js/document/text-document.js
@@ -164,11 +164,7 @@ var TextDocument = exports.TextDocument = Montage.create(Component, {
164 needsSave: { 164 needsSave: {
165 get: function() { return this._needsSave; }, 165 get: function() { return this._needsSave; },
166 set: function(value) { 166 set: function(value) {
167 var i=0, canSaveAll=false;
168 this._needsSave = value; 167 this._needsSave = value;
169
170 this.application.ninja.documentController.canSave = value;//for save menu state update
171 this.application.ninja.documentController.canSaveAll = value;//for save menu state update..currently save all is tried to the current document only
172 } 168 }
173 }, 169 },
174 170