зеркало из https://github.com/mozilla/pjs.git
b=386534. r=gavin. removeEventListener needs 3 params
This commit is contained in:
Родитель
14e13e8172
Коммит
706c9799e0
|
@ -624,7 +624,7 @@ Window.prototype = {
|
|||
|
||||
_shutdown : function() {
|
||||
for (var type in this._cleanup)
|
||||
this._tabbrowser.removeEventListener(type, this._cleanup[type]);
|
||||
this._tabbrowser.removeEventListener(type, this._cleanup[type], true);
|
||||
this._cleanup = null;
|
||||
|
||||
this._window = null;
|
||||
|
@ -727,7 +727,7 @@ BrowserTab.prototype = {
|
|||
|
||||
_shutdown : function() {
|
||||
for (var type in this._cleanup)
|
||||
this._browser.removeEventListener(type, this._cleanup[type]);
|
||||
this._browser.removeEventListener(type, this._cleanup[type], true);
|
||||
this._cleanup = null;
|
||||
|
||||
this._window = null;
|
||||
|
|
Загрузка…
Ссылка в новой задаче