diff options
Diffstat (limited to 'program/js/common.js')
-rw-r--r-- | program/js/common.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/program/js/common.js b/program/js/common.js index f7c0a7536..53dce8cc2 100644 --- a/program/js/common.js +++ b/program/js/common.js @@ -298,8 +298,7 @@ addEventListener: function(evt, func, obj) if (!this._events[evt]) this._events[evt] = []; - var e = {func:func, obj:obj ? obj : window}; - this._events[evt][this._events[evt].length] = e; + this._events[evt].push({func:func, obj:obj ? obj : window}); }, /** |