aboutsummaryrefslogtreecommitdiffstats
path: root/platform/firefox/frameModule.js
diff options
context:
space:
mode:
Diffstat (limited to 'platform/firefox/frameModule.js')
-rw-r--r--platform/firefox/frameModule.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/platform/firefox/frameModule.js b/platform/firefox/frameModule.js
index 98fc107..37de2b5 100644
--- a/platform/firefox/frameModule.js
+++ b/platform/firefox/frameModule.js
@@ -23,6 +23,7 @@
/******************************************************************************/
+// https://github.com/gorhill/uBlock/issues/800
this.EXPORTED_SYMBOLS = ['contentObserver', 'LocationChangeListener'];
const {interfaces: Ci, utils: Cu} = Components;
@@ -62,7 +63,7 @@ const getMessageManager = function(win) {
/******************************************************************************/
-const contentObserver = {
+var contentObserver = {
classDescription: 'content-policy for ' + hostName,
classID: Components.ID('{7afbd130-cbaf-46c2-b944-f5d24305f484}'),
contractID: '@' + hostName + '/content-policy;1',
@@ -423,7 +424,7 @@ const contentObserver = {
const locationChangedMessageName = hostName + ':locationChanged';
-const LocationChangeListener = function(docShell) {
+var LocationChangeListener = function(docShell) {
if ( !docShell ) {
return;
}