mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 09:18:42 +09:00
Mass-replace global-scope let with var in Pale Moon and TychoAM
tag #155
This commit is contained in:
parent
7099ae78c1
commit
d5b0bc88af
62 changed files with 120 additions and 119 deletions
|
|
@ -2329,7 +2329,7 @@ function BrowserOnAboutPageLoad(doc) {
|
|||
/**
|
||||
* Handle command events bubbling up from error page content
|
||||
*/
|
||||
let BrowserOnClick = {
|
||||
var BrowserOnClick = {
|
||||
handleEvent: function BrowserOnClick_handleEvent(aEvent) {
|
||||
if (!aEvent.isTrusted || // Don't trust synthetic events
|
||||
aEvent.button == 2 || aEvent.target.localName != "button") {
|
||||
|
|
@ -6998,7 +6998,8 @@ function focusNextFrame(event) {
|
|||
if (element.ownerDocument == document)
|
||||
focusAndSelectUrlBar();
|
||||
}
|
||||
let BrowserChromeTest = {
|
||||
|
||||
var BrowserChromeTest = {
|
||||
_cb: null,
|
||||
_ready: false,
|
||||
markAsReady: function () {
|
||||
|
|
@ -7016,7 +7017,7 @@ let BrowserChromeTest = {
|
|||
}
|
||||
};
|
||||
|
||||
let ToolbarIconColor = {
|
||||
var ToolbarIconColor = {
|
||||
init: function () {
|
||||
this._initialized = true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue