Bug 335780 - Clear updates message when closing notification after checking for updates to a single add-on. r=bsmedberg

This commit is contained in:
rob_strong%exchangecode.com 2006-05-02 18:22:47 +00:00
Родитель 7c182b2f19
Коммит 8cf16a49c9
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -1126,9 +1126,10 @@ const gAddonsMsgObserver = {
break;
case "addons-no-updates":
var children = gExtensionsView.children;
if (children[0] && children[0].hasAttribute("updateStatus")) {
for (var i = 0; i < children.length; ++i)
children[i].removeAttribute("updateStatus");
for (var i = 0; i < children.length; ++i) {
var child = children[i];
if (child.hasAttribute("updateStatus"))
child.removeAttribute("updateStatus");
}
break;
case "addons-go-online":