diff options
author | Valerio Virgillito | 2012-01-31 11:15:24 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-01-31 11:15:24 -0800 |
commit | 3456d99f9c15128b194c111104b5092b189e13ee (patch) | |
tree | 2e4396362a69449d3b8e5f550ece2f295abb3484 /js/components/combobox.reel | |
parent | dda0b77737991d68e4a8a5ca95154a373f8bc84e (diff) | |
parent | 1d8af9fb2be85c33ce6a846f97360ba2ee17ea23 (diff) | |
download | ninja-3456d99f9c15128b194c111104b5092b189e13ee.tar.gz |
Merge branch 'master' of github.com:Motorola-Mobility/ninja-internal into components
Diffstat (limited to 'js/components/combobox.reel')
-rw-r--r-- | 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 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 | ||