Bug 1408777 - Automatically fix instances of missing semicolons in the tree. r=Standard8
MozReview-Commit-ID: Jm8BRgt6mIv
This commit is contained in:
@@ -557,7 +557,7 @@ const PanelUI = {
|
||||
* Remove all the nodes from the 'Recent Highlights' section and hide it as well.
|
||||
*/
|
||||
clearLibraryRecentHighlights() {
|
||||
let container = document.getElementById("appMenu-library-recentHighlights")
|
||||
let container = document.getElementById("appMenu-library-recentHighlights");
|
||||
while (container.firstChild) {
|
||||
container.firstChild.remove();
|
||||
}
|
||||
@@ -712,7 +712,7 @@ const PanelUI = {
|
||||
if (this.panel.state == "showing" || this.panel.state == "open") {
|
||||
// If the menu is already showing, then we need to dismiss all notifications
|
||||
// since we don't want their doorhangers competing for attention
|
||||
doorhangers.forEach(n => { n.dismissed = true; })
|
||||
doorhangers.forEach(n => { n.dismissed = true; });
|
||||
this._hidePopup();
|
||||
this._clearBadge();
|
||||
if (!notifications[0].options.badgeOnly) {
|
||||
|
||||
Reference in New Issue
Block a user