| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2  * This file is part of Adblock Plus <https://adblockplus.org/>, | 2  * This file is part of Adblock Plus <https://adblockplus.org/>, | 
| 3  * Copyright (C) 2006-2016 Eyeo GmbH | 3  * Copyright (C) 2006-2016 Eyeo GmbH | 
| 4  * | 4  * | 
| 5  * Adblock Plus is free software: you can redistribute it and/or modify | 5  * Adblock Plus is free software: you can redistribute it and/or modify | 
| 6  * it under the terms of the GNU General Public License version 3 as | 6  * it under the terms of the GNU General Public License version 3 as | 
| 7  * published by the Free Software Foundation. | 7  * published by the Free Software Foundation. | 
| 8  * | 8  * | 
| 9  * Adblock Plus is distributed in the hope that it will be useful, | 9  * Adblock Plus is distributed in the hope that it will be useful, | 
| 10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| 11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
| 12  * GNU General Public License for more details. | 12  * GNU General Public License for more details. | 
| 13  * | 13  * | 
| 14  * You should have received a copy of the GNU General Public License | 14  * You should have received a copy of the GNU General Public License | 
| 15  * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. | 15  * along with Adblock Plus.  If not, see <http://www.gnu.org/licenses/>. | 
| 16  */ | 16  */ | 
| 17 | 17 | 
| 18 | 18 | 
| 19 (function() |  | 
| 20 { | 19 { | 
| 21   window.ext = {}; | 20   window.ext = {}; | 
| 22 | 21 | 
| 23   var EventTarget = ext._EventTarget = function() | 22   let EventTarget = ext._EventTarget = function() | 
| 24   { | 23   { | 
| 25     this._listeners = []; | 24     this._listeners = []; | 
| 26   }; | 25   }; | 
| 27   EventTarget.prototype = { | 26   EventTarget.prototype = { | 
| 28     addListener: function(listener) | 27     addListener: function(listener) | 
| 29     { | 28     { | 
| 30       if (this._listeners.indexOf(listener) == -1) | 29       if (this._listeners.indexOf(listener) == -1) | 
| 31         this._listeners.push(listener); | 30         this._listeners.push(listener); | 
| 32     }, | 31     }, | 
| 33     removeListener: function(listener) | 32     removeListener: function(listener) | 
| 34     { | 33     { | 
| 35       var idx = this._listeners.indexOf(listener); | 34       let idx = this._listeners.indexOf(listener); | 
| 36       if (idx != -1) | 35       if (idx != -1) | 
| 37         this._listeners.splice(idx, 1); | 36         this._listeners.splice(idx, 1); | 
| 38     }, | 37     }, | 
| 39     _dispatch: function() | 38     _dispatch: function() | 
| 40     { | 39     { | 
| 41       var results = []; | 40       let results = []; | 
| 42       var listeners = this._listeners.slice(); | 41       let listeners = this._listeners.slice(); | 
| 43 | 42 | 
| 44       for (var i = 0; i < listeners.length; i++) | 43       for (let listener of listeners) | 
| 45         results.push(listeners[i].apply(null, arguments)); | 44         results.push(listener.apply(null, arguments)); | 
| 46 | 45 | 
| 47       return results; | 46       return results; | 
| 48     } | 47     } | 
| 49   }; | 48   }; | 
| 50 })(); | 49 } | 
| OLD | NEW | 
|---|