aboutsummaryrefslogtreecommitdiff
path: root/js/components/combobox.reel
diff options
context:
space:
mode:
authorKris Kowal2012-07-06 11:52:06 -0700
committerKris Kowal2012-07-06 15:01:48 -0700
commit648ee61ae84216d0236e0dbc211addc13b2cfa3a (patch)
tree8f0f55557bd0c47a84e49c1977c950645d284607 /js/components/combobox.reel
parentaedd14b18695d031f695d27dfbd94df5614495bb (diff)
downloadninja-648ee61ae84216d0236e0dbc211addc13b2cfa3a.tar.gz
Expand tabs
Diffstat (limited to 'js/components/combobox.reel')
-rwxr-xr-xjs/components/combobox.reel/combobox.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/components/combobox.reel/combobox.js b/js/components/combobox.reel/combobox.js
index 4effc686..0d46e1ff 100755
--- a/js/components/combobox.reel/combobox.js
+++ b/js/components/combobox.reel/combobox.js
@@ -153,12 +153,12 @@ exports.Combobox = Montage.create(Component, {
153 handleChange: 153 handleChange:
154 { 154 {
155 value:function(event) 155 value:function(event)
156 { 156 {
157 this._valueSyncedWithInputField = true; 157 this._valueSyncedWithInputField = true;
158 this._wasSetByCode = false; 158 this._wasSetByCode = false;
159 this.value = this.element.value; 159 this.value = this.element.value;
160 this.needsDraw = true; 160 this.needsDraw = true;
161 } 161 }
162 }, 162 },
163 163
164 willDraw: { 164 willDraw: {