Bug 1408777 - Automatically fix instances of missing semicolons in the tree. r=Standard8

MozReview-Commit-ID: Jm8BRgt6mIv
This commit is contained in:
Dan Banner
2017-10-15 19:50:30 +01:00
committed by Mark Banner
parent 1b0e318805
commit 5af4450327
1156 changed files with 3304 additions and 3304 deletions

View File

@@ -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) {