aboutsummaryrefslogtreecommitdiff
path: root/js/components/combobox.reel/combobox.js
diff options
context:
space:
mode:
authorPushkar Joshi2012-01-31 12:07:43 -0800
committerPushkar Joshi2012-01-31 12:07:43 -0800
commitc006b3e75d5e23da63687a04cd30bf56a3a8a80d (patch)
tree3be485ebd5519d6f74cfb2cc0757f57099e4b204 /js/components/combobox.reel/combobox.js
parentf0e3fa691b3c042c9fc49a7a0cde8ddf8100c195 (diff)
parent1d8af9fb2be85c33ce6a846f97360ba2ee17ea23 (diff)
downloadninja-c006b3e75d5e23da63687a04cd30bf56a3a8a80d.tar.gz
Merge branch 'master' into pentool
Diffstat (limited to 'js/components/combobox.reel/combobox.js')
-rw-r--r--js/components/combobox.reel/combobox.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/components/combobox.reel/combobox.js b/js/components/combobox.reel/combobox.js
index f262bb06..a68a7d6b 100644
--- a/js/components/combobox.reel/combobox.js
+++ b/js/components/combobox.reel/combobox.js
@@ -67,7 +67,7 @@ exports.Combobox = Montage.create(Component, {
67 var e = document.createEvent("CustomEvent"); 67 var e = document.createEvent("CustomEvent");
68 e.initEvent("change", true, true); 68 e.initEvent("change", true, true);
69 e.type = "change"; 69 e.type = "change";
70 e._wasSetByCode = this._wasSetByCode; 70 e.wasSetByCode = this._wasSetByCode;
71 e.value = this._value; 71 e.value = this._value;
72 this.dispatchEvent(e); 72 this.dispatchEvent(e);
73 73