diff options
author | Nivesh Rajbhandari | 2012-02-07 11:42:10 -0800 |
---|---|---|
committer | Nivesh Rajbhandari | 2012-02-07 11:42:10 -0800 |
commit | 8ad767b61460984a4031ba630f76ac8247a61857 (patch) | |
tree | 67c178dfa5e88f95a95af419f8e2ce6a72127b80 /js/components | |
parent | 486842239c71e7964f38a09aacda4970f2a82e1a (diff) | |
download | ninja-8ad767b61460984a4031ba630f76ac8247a61857.tar.gz |
Fixed PI to support WebGL materials.
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
Diffstat (limited to 'js/components')
-rw-r--r-- | js/components/combobox.reel/combobox.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/components/combobox.reel/combobox.js b/js/components/combobox.reel/combobox.js index 8906a649..ebbfbffa 100644 --- a/js/components/combobox.reel/combobox.js +++ b/js/components/combobox.reel/combobox.js | |||
@@ -15,7 +15,7 @@ exports.Combobox = Montage.create(Component, { | |||
15 | }, | 15 | }, |
16 | 16 | ||
17 | _wasSetByCode: { | 17 | _wasSetByCode: { |
18 | enumerable: false, | 18 | enumerable: true, |
19 | value: true | 19 | value: true |
20 | }, | 20 | }, |
21 | 21 | ||
@@ -79,7 +79,7 @@ exports.Combobox = Montage.create(Component, { | |||
79 | e.value = this._value; | 79 | e.value = this._value; |
80 | this.dispatchEvent(e); | 80 | this.dispatchEvent(e); |
81 | 81 | ||
82 | this._wasSetByCode = false; | 82 | this._wasSetByCode = true; |
83 | } | 83 | } |
84 | } | 84 | } |
85 | }, | 85 | }, |