Index: ext/common.js |
diff --git a/ext/common.js b/ext/common.js |
index 983f10984c003465d8f60e21f7a3ac3e662fe2e8..79c12e0fb77235daff2c42f41254b89af1590b90 100644 |
--- a/ext/common.js |
+++ b/ext/common.js |
@@ -17,8 +17,9 @@ |
"use strict"; |
+(function() |
{ |
- var ext = {}; |
+ window.ext = {}; |
let EventTarget = ext._EventTarget = function() |
{ |
@@ -36,15 +37,15 @@ |
if (idx != -1) |
this._listeners.splice(idx, 1); |
}, |
- _dispatch() |
+ _dispatch(...args) |
{ |
let results = []; |
let listeners = this._listeners.slice(); |
for (let listener of listeners) |
- results.push(listener.apply(null, arguments)); |
+ results.push(listener(...args)); |
return results; |
} |
}; |
-} |
+}()); |