diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-05-28 21:17:50 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-05-28 21:17:50 +0200 |
commit | 170aaecc47c7f6bb9ddb64fc0d61beec76cca65b (patch) | |
tree | 08143b5b4eb633abbb55f66b411ca908757df689 /application/palemoon/components/distribution.js | |
parent | c8409cc60bd54586e4a484c7ad15a2c408198dd7 (diff) | |
download | UXP-170aaecc47c7f6bb9ddb64fc0d61beec76cca65b.tar UXP-170aaecc47c7f6bb9ddb64fc0d61beec76cca65b.tar.gz UXP-170aaecc47c7f6bb9ddb64fc0d61beec76cca65b.tar.lz UXP-170aaecc47c7f6bb9ddb64fc0d61beec76cca65b.tar.xz UXP-170aaecc47c7f6bb9ddb64fc0d61beec76cca65b.zip |
[PALEMOON] [frontend vs backend] Part 2: Mass-replace global-scope let/const with var in Pale Moon and TychoAM
Issue #155
Part 2 for:
https://github.com/MoonchildProductions/UXP/commit/931950a880b3550490422b1855c509be10586858
Diffstat (limited to 'application/palemoon/components/distribution.js')
-rw-r--r-- | application/palemoon/components/distribution.js | 8 |
1 files changed, 4 insertions, 4 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"; |