From 6b9bfb63f6bc22ef1095dc11816826bb83a2c408 Mon Sep 17 00:00:00 2001
From: Valerio Virgillito
Date: Mon, 26 Mar 2012 15:55:38 -0700
Subject: Cleanup of the components panel

Renamed to naming convention. Deleted un-used file.

Signed-off-by: Valerio Virgillito <valerio@motorola.com>
---
 js/data/panels-data.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'js/data')

diff --git a/js/data/panels-data.js b/js/data/panels-data.js
index 2422f5e7..7a2d817a 100644
--- a/js/data/panels-data.js
+++ b/js/data/panels-data.js
@@ -55,8 +55,8 @@ exports.PanelsData = Montage.create(Montage, {
             scrollable: true,
             collapsed: true,
             open: true,
-            modulePath: "js/panels/Components/ComponentsPanelBase.reel",
-            moduleName: "ComponentsPanelBase"
+            modulePath: "js/panels/components-panel.reel",
+            moduleName: "ComponentsPanel"
         },
 //        {
 //            name: "Project/Assets",
-- 
cgit v1.2.3


From c2e9ed5bc4cbef870283784fa2a91f43ff72cade Mon Sep 17 00:00:00 2001
From: Nivesh Rajbhandari
Date: Mon, 2 Apr 2012 11:14:46 -0700
Subject: IKNinja-1410 - Inner Radius should be restricted to 99%.

Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
---
 js/data/pi/pi-data.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'js/data')

diff --git a/js/data/pi/pi-data.js b/js/data/pi/pi-data.js
index 7edc90d8..07017f09 100755
--- a/js/data/pi/pi-data.js
+++ b/js/data/pi/pi-data.js
@@ -578,7 +578,7 @@ exports.PiData = Montage.create( Montage, {
                             valueMutator: parseFloat,
                             value : 0,
                             min :   0,
-                            max :   100,
+                            max :   99,
                             unit : "%",
                             acceptableUnits: ["%"]
 
-- 
cgit v1.2.3


From d5b429f4d1fad1f9b83e81d2d742d43ec39bd585 Mon Sep 17 00:00:00 2001
From: Ananya Sen
Date: Wed, 4 Apr 2012 15:14:33 -0700
Subject: [CR] Keep Save related menu items always enabled, if there is an open
 document

Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
---
 js/data/menu-data.js | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

(limited to 'js/data')

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, {
                             "enabled": {
                                 "value": false,
                                 "boundObj": "documentController",
-                                "boundProperty": "canSave",
-                                "oneway": true
+                                "boundProperty": "activeDocument",
+                                "oneway": true,
+                                "boundValueMutator": function(activeDocument){
+                                    if(activeDocument !== null){return true;}
+                                    else{return false;}
+                                }
                             },
                             "action": "executeSave"
                         },
@@ -96,10 +100,10 @@ exports.MenuData = Montage.create( Montage, {
                             "enabled": {
                                 "value": false,
                                 "boundObj": "documentController",
-                                "boundProperty": "canSaveAll",
+                                "boundProperty": "activeDocument",
                                 "oneway": true,
-                                "boundValueMutator": function(canSaveAll){
-                                    if(canSaveAll === true){return true;}
+                                "boundValueMutator": function(activeDocument){
+                                    if(activeDocument !== null){return true;}
                                     else{return false;}
                                 }
                             },
-- 
cgit v1.2.3