mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 483736: switch to 'let' instead of 'const' for Cc, Ci and Cu, r=gavin
This commit is contained in:
parent
44ef67e0c0
commit
a01fc3c92e
@ -41,9 +41,9 @@
|
||||
*
|
||||
* ***** END LICENSE BLOCK ***** */
|
||||
|
||||
const Cc = Components.classes;
|
||||
const Ci = Components.interfaces;
|
||||
const Cu = Components.utils;
|
||||
let Cc = Components.classes;
|
||||
let Ci = Components.interfaces;
|
||||
let Cu = Components.utils;
|
||||
|
||||
const FINDSTATE_FIND = 0;
|
||||
const FINDSTATE_FIND_AGAIN = 1;
|
||||
@ -92,7 +92,7 @@ var Browser = {
|
||||
}
|
||||
gSidebarVisible = visibleNow;
|
||||
}
|
||||
|
||||
|
||||
// move checkerboard
|
||||
browserContainer.style.backgroundPosition = -vr.left + "px " + -vr.top + "px";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user