aboutsummaryrefslogtreecommitdiff
path: root/js/components/combobox.reel
diff options
context:
space:
mode:
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: {