diff options
author | Jose Antonio Marquez | 2012-01-31 16:00:36 -0800 |
---|---|---|
committer | Jose Antonio Marquez | 2012-01-31 16:00:36 -0800 |
commit | 67097a84b13199a6e7ee3185f1c5521208f1732f (patch) | |
tree | be812e83d0a7db84fba2d87c3610b3ed45c10569 /js/components/combobox.reel | |
parent | e75223a2c4c1e13d66639841e6418e94fe9b726f (diff) | |
parent | b01b586a26ae47d329bdd5fe005051513711fab7 (diff) | |
download | ninja-67097a84b13199a6e7ee3185f1c5521208f1732f.tar.gz |
Merge branch 'refs/heads/NinjaInternal' into FileIO
Diffstat (limited to 'js/components/combobox.reel')
-rwxr-xr-x | js/components/combobox.reel/combobox.js | 2 |
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 100755 --- 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 | ||