diff options
author | Valerio Virgillito | 2012-05-17 00:16:43 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-17 00:16:43 -0700 |
commit | 65cea92d839bcd25ea9094a0798190a4dc4bea35 (patch) | |
tree | 84d4bbec22289137e8babf69cc2a898828974489 /js/panels/properties.reel/sections/custom.reel/custom.js | |
parent | 402a369c7bf164c3c6686be3a33f5e36f25e4130 (diff) | |
download | ninja-65cea92d839bcd25ea9094a0798190a4dc4bea35.tar.gz |
Adding a disabled property to the label-checkbox.
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/panels/properties.reel/sections/custom.reel/custom.js')
-rwxr-xr-x | js/panels/properties.reel/sections/custom.reel/custom.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/panels/properties.reel/sections/custom.reel/custom.js b/js/panels/properties.reel/sections/custom.reel/custom.js index 3ab32888..49b4414e 100755 --- a/js/panels/properties.reel/sections/custom.reel/custom.js +++ b/js/panels/properties.reel/sections/custom.reel/custom.js | |||
@@ -262,10 +262,10 @@ exports.CustomSection = Montage.create(Component, { | |||
262 | if(aField.enabled.boundObject) { | 262 | if(aField.enabled.boundObject) { |
263 | // TODO - For now, always bind to this.controls[someProperty] | 263 | // TODO - For now, always bind to this.controls[someProperty] |
264 | Object.defineBinding(obj, "enabled", { | 264 | Object.defineBinding(obj, "enabled", { |
265 | boundObject: this.controls, | 265 | boundObject: this.controls, |
266 | boundObjectPropertyPath: aField.enabled.boundProperty, | 266 | boundObjectPropertyPath: aField.enabled.boundProperty, |
267 | oneway: false | 267 | oneway: false |
268 | }); | 268 | }); |
269 | } else { | 269 | } else { |
270 | obj.enabled = aField.enabled; | 270 | obj.enabled = aField.enabled; |
271 | } | 271 | } |