aboutsummaryrefslogtreecommitdiff
path: root/js/data
diff options
context:
space:
mode:
authorValerio Virgillito2012-04-04 16:05:49 -0700
committerValerio Virgillito2012-04-04 16:05:49 -0700
commit17ca01f54591187f5c0812c0fd2cb7260afa9639 (patch)
tree98da5ca203a1d9f423be1303645bddc8ec6d2e0a /js/data
parente721a7c1009f298a1bd8fea583da14535e039880 (diff)
parentd5b429f4d1fad1f9b83e81d2d742d43ec39bd585 (diff)
downloadninja-17ca01f54591187f5c0812c0fd2cb7260afa9639.tar.gz
Merge pull request #157 from ananyasen/ninja-internal-master-patch1
[CR] Keep Save related menu items always enabled, if there is an open do...
Diffstat (limited to 'js/data')
-rwxr-xr-xjs/data/menu-data.js14
1 files changed, 9 insertions, 5 deletions
diff --git a/js/data/menu-data.js b/js/data/menu-data.js
index 3333d209..a1fe2703 100755
--- a/js/data/menu-data.js
+++ b/js/data/menu-data.js
@@ -70,8 +70,12 @@ exports.MenuData = Montage.create( Montage, {
70 "enabled": { 70 "enabled": {
71 "value": false, 71 "value": false,
72 "boundObj": "documentController", 72 "boundObj": "documentController",
73 "boundProperty": "canSave", 73 "boundProperty": "activeDocument",
74 "oneway": true 74 "oneway": true,
75 "boundValueMutator": function(activeDocument){
76 if(activeDocument !== null){return true;}
77 else{return false;}
78 }
75 }, 79 },
76 "action": "executeSave" 80 "action": "executeSave"
77 }, 81 },
@@ -96,10 +100,10 @@ exports.MenuData = Montage.create( Montage, {
96 "enabled": { 100 "enabled": {
97 "value": false, 101 "value": false,
98 "boundObj": "documentController", 102 "boundObj": "documentController",
99 "boundProperty": "canSaveAll", 103 "boundProperty": "activeDocument",
100 "oneway": true, 104 "oneway": true,
101 "boundValueMutator": function(canSaveAll){ 105 "boundValueMutator": function(activeDocument){
102 if(canSaveAll === true){return true;} 106 if(activeDocument !== null){return true;}
103 else{return false;} 107 else{return false;}
104 } 108 }
105 }, 109 },