diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-05-29 00:58:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-29 00:58:16 +0200 |
commit | 6f54c3d1fc475d7b0352b5739cd8a55c69d896ee (patch) | |
tree | 34d64940df7aabb59e8cd78a16f42b4ac3c7172d /application/palemoon/components | |
parent | 258eb6ee9ccefc8a6353a73c6389b042054a36fe (diff) | |
parent | 170aaecc47c7f6bb9ddb64fc0d61beec76cca65b (diff) | |
download | UXP-6f54c3d1fc475d7b0352b5739cd8a55c69d896ee.tar UXP-6f54c3d1fc475d7b0352b5739cd8a55c69d896ee.tar.gz UXP-6f54c3d1fc475d7b0352b5739cd8a55c69d896ee.tar.lz UXP-6f54c3d1fc475d7b0352b5739cd8a55c69d896ee.tar.xz UXP-6f54c3d1fc475d7b0352b5739cd8a55c69d896ee.zip |
Merge pull request #404 from janekptacijarabaci/pm_global-scope_1
[PALEMOON] [frontend vs backend] Part 2: Mass-replace global-scope let/const with var in Pale Moon and TychoAM
Diffstat (limited to 'application/palemoon/components')
3 files changed, 8 insertions, 8 deletions
diff --git a/application/palemoon/components/distribution.js b/application/palemoon/components/distribution.js index b44b5bed3..d3300604e 100644 --- a/application/palemoon/components/distribution.js +++ b/application/palemoon/components/distribution.js @@ -4,10 +4,10 @@ this.EXPORTED_SYMBOLS = [ "DistributionCustomizer" ]; -const Ci = Components.interfaces; -const Cc = Components.classes; -const Cr = Components.results; -const Cu = Components.utils; +var Ci = Components.interfaces; +var Cc = Components.classes; +var Cr = Components.results; +var Cu = Components.utils; const DISTRIBUTION_CUSTOMIZATION_COMPLETE_TOPIC = "distribution-customization-complete"; diff --git a/application/palemoon/components/sessionstore/content/aboutSessionRestore.js b/application/palemoon/components/sessionstore/content/aboutSessionRestore.js index cae3bf4de..2459b67f5 100644 --- a/application/palemoon/components/sessionstore/content/aboutSessionRestore.js +++ b/application/palemoon/components/sessionstore/content/aboutSessionRestore.js @@ -2,9 +2,9 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -const Cc = Components.classes; -const Ci = Components.interfaces; -const Cu = Components.utils; +var Cc = Components.classes; +var Ci = Components.interfaces; +var Cu = Components.utils; var gStateObject; var gTreeData; diff --git a/application/palemoon/components/sessionstore/content/content-sessionStore.js b/application/palemoon/components/sessionstore/content/content-sessionStore.js index bdf0fef0c..e3e956ef2 100644 --- a/application/palemoon/components/sessionstore/content/content-sessionStore.js +++ b/application/palemoon/components/sessionstore/content/content-sessionStore.js @@ -10,7 +10,7 @@ function debug(msg) { * Listens for and handles content events that we need for the * session store service to be notified of state changes in content. */ -let EventListener = { +var EventListener = { DOM_EVENTS: [ "pageshow", "change", "input" |