aboutsummaryrefslogtreecommitdiff
path: root/js/panels/properties/content.reel
diff options
context:
space:
mode:
authorValerio Virgillito2012-02-10 17:21:28 -0800
committerValerio Virgillito2012-02-10 17:21:28 -0800
commita30d76ff641ce89686cf5fbd9f04ac9ab4e9c830 (patch)
tree41b7443e3a22c8215b30d992e06adc28c2f7919a /js/panels/properties/content.reel
parent666ae3e9119410cbf7fa974274d95336aaff091c (diff)
downloadninja-a30d76ff641ce89686cf5fbd9f04ac9ab4e9c830.tar.gz
initial color chip for the stage
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/panels/properties/content.reel')
-rw-r--r--js/panels/properties/content.reel/content.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/js/panels/properties/content.reel/content.js b/js/panels/properties/content.reel/content.js
index 0088447a..b15f2d71 100644
--- a/js/panels/properties/content.reel/content.js
+++ b/js/panels/properties/content.reel/content.js
@@ -150,6 +150,43 @@ exports.Content = Montage.create(Component, {
150 this.customPi = stage.elementModel.pi; 150 this.customPi = stage.elementModel.pi;
151 this.displayCustomProperties(stage, stage.elementModel.pi); 151 this.displayCustomProperties(stage, stage.elementModel.pi);
152 } 152 }
153
154 // For now hardcode the background since it is the only custom property
155 // No need to loop through all the properties.
156 var backgroundChip = this.customSections[0].content.controls["background"];
157 backgroundChip.initialColor = ElementsMediator.getProperty(stage, "background");
158
159 // Get stage color
160 //var backgroundColor =
161 //console.log(backgroundColor);
162
163 /*
164 var customPI = PiData[this.customPi];
165 // Get all the custom section for the custom PI
166 for(var i = 0, customSec; customSec = customPI[i]; i++) {
167
168 // Now set the Fields for the custom PI
169 for(var j = 0, fields; fields = customSec.Section[j]; j++) {
170 for(var k = 0, control; control = fields[k]; k++) {
171
172 var colorChipEl = this.customSections[i].content.controls[control.id];
173 this.foo = colorChipEl;
174 colorChipEl.addEventListener("firstDraw", this, false);
175
176 }
177 }
178 }
179 */
180 }
181 },
182
183 foo: {
184 value: null
185 },
186
187 handleFirstDraw: {
188 value: function() {
189 this.foo.chipBtn.color('rgb', {wasSetByCode: true, type: 'change', color: {r: 255, g: 0, b: 0}, css: 'rgb(255,0,0)'});
153 } 190 }
154 }, 191 },
155 192