Bug 303075 : removeProgressListener resets the progressListener to null instead of removing it, patch by Aaron Keier <tonglebeak@gmail.com>, r+a=mconnor

This commit is contained in:
gavin%gavinsharp.com 2005-08-04 23:53:22 +00:00
Родитель 65cf9ff503
Коммит 706fef46c1
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1319,7 +1319,7 @@
if (!this.mProgressListeners) return;
for (var i = 0; i < this.mProgressListeners.length; i++) {
if (this.mProgressListeners[i] == aListener) {
this.mProgressListeners[i] = null;
this.mProgressListeners.splice(i, 1);
break;
}
}