зеркало из https://github.com/mozilla/pjs.git
Bug 366387 - HelperApps prototype has duplicated functions (AddObserver/RemoveObserver) and is missing onBeginUpdateBatch/onEndUpdateBatch. Patch by Regis Caspar <regis.caspar+bz@gmail.com>, r=gavin
This commit is contained in:
Родитель
16e44d1c99
Коммит
b5cc6eac13
|
@ -397,6 +397,18 @@ HelperApps.prototype = {
|
|||
}
|
||||
},
|
||||
|
||||
onBeginUpdateBatch: function (aDataSource) {
|
||||
for (var i = 0; i < this._observers.length; ++i) {
|
||||
this._observers[i].onBeginUpdateBatch(aDataSource);
|
||||
}
|
||||
},
|
||||
|
||||
onEndUpdateBatch: function (aDataSource) {
|
||||
for (var i = 0; i < this._observers.length; ++i) {
|
||||
this._observers[i].onEndUpdateBatch(aDataSource);
|
||||
}
|
||||
},
|
||||
|
||||
beginUpdateBatch: function (aDataSource) {
|
||||
for (var i = 0; i < this._observers.length; ++i) {
|
||||
this._observers[i].beginUpdateBatch(aDataSource);
|
||||
|
|
Загрузка…
Ссылка в новой задаче