[Pale-Moon] Issue #1737 - Address nits.

This commit is contained in:
Pale Moon 2020-04-19 01:42:51 +02:00 committed by Roy Tam
commit b294e4f2ff
2 changed files with 3 additions and 5 deletions

View file

@ -172,7 +172,7 @@ var FullScreen = {
if (aEvent.keyCode == aEvent.DOM_VK_ESCAPE) {
FullScreen.hideNavToolbox(true);
} else if (aEvent.keyCode == aEvent.DOM_VK_F6) {
// F6 is another shortcut to the address bar, but its not covered in OpenLocation()
// F6 is another shortcut to the address bar, but its not covered in OpenLocation()
FullScreen.showNavToolbox();
}
},

View file

@ -5710,8 +5710,7 @@ var BrowserOffline = {
// Stop automatic management of the offline status
try {
ioService.manageOfflineStatus = false;
} catch(ex) {
}
} catch(ex) {}
if (!ioService.offline && !this._canGoOffline()) {
this._updateOfflineUI(false);
@ -7524,8 +7523,7 @@ var ToolbarIconColor = {
var colorChangedPref = false;
try {
colorChangedPref = gPrefService.getBoolPref("ui.colorChanged");
} catch(e) {
}
} catch(e) {}
// if pref indicates change, call inferFromText() on a small delay
if (colorChangedPref == true) {
setTimeout(() => { this.inferFromText(); }, 300);