зеркало из https://github.com/mozilla/gecko-dev.git
Bug 335780 - Clear updates message when closing notification after checking for updates to a single add-on. r=bsmedberg
This commit is contained in:
Родитель
7c182b2f19
Коммит
8cf16a49c9
|
@ -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":
|
||||
|
|
Загрузка…
Ссылка в новой задаче