Bug 834400 - Use bind() in download callbacks. r=mfinkle

--HG--
extra : rebase_source : a736b3f7d71d47230370e551f620b9362f45f265
This commit is contained in:
Brian Nicholson 2013-01-24 13:52:05 -08:00
Родитель 370e5c693f
Коммит 974d61d9b2
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -439,7 +439,7 @@ let Downloads = {
} catch (ex) {
this.logError("openDownload() " + ex, aDownload);
}
});
}.bind(this));
},
removeDownload: function dl_removeDownload(aItem) {
@ -458,7 +458,7 @@ let Downloads = {
} catch (ex) {
this.logError("removeDownload() " + ex, aDownload);
}
});
}.bind(this));
aItem.parentNode.removeChild(aItem);
},