summaryrefslogtreecommitdiffstats
path: root/application/palemoon/base/content/content.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-04-12 07:28:41 -0400
committerMatt A. Tobin <email@mattatobin.com>2018-04-12 07:28:41 -0400
commit588a484c53653d37729b6a874bb5ab447cea4867 (patch)
treed9c77e78fa39e2ea8276d2e7b7d3714cd4fb0c3b /application/palemoon/base/content/content.js
parent536bc9be40ca700fef0a70e4e8929342db1d86c6 (diff)
downloadUXP-588a484c53653d37729b6a874bb5ab447cea4867.tar
UXP-588a484c53653d37729b6a874bb5ab447cea4867.tar.gz
UXP-588a484c53653d37729b6a874bb5ab447cea4867.tar.lz
UXP-588a484c53653d37729b6a874bb5ab447cea4867.tar.xz
UXP-588a484c53653d37729b6a874bb5ab447cea4867.zip
[PALEMOON] Resolve issues with redeclaration according to ES6
Diffstat (limited to 'application/palemoon/base/content/content.js')
-rw-r--r--application/palemoon/base/content/content.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/application/palemoon/base/content/content.js b/application/palemoon/base/content/content.js
index 3587bbeef..d64f69c6e 100644
--- a/application/palemoon/base/content/content.js
+++ b/application/palemoon/base/content/content.js
@@ -3,9 +3,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/. */
-let Cc = Components.classes;
-let Ci = Components.interfaces;
-let Cu = Components.utils;
+var Cc = Components.classes;
+var Ci = Components.interfaces;
+var Cu = Components.utils;
Cu.import("resource://gre/modules/XPCOMUtils.jsm");