diff options
author | gorhill <rhill@raymondhill.net> | 2015-10-08 11:15:58 -0400 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2015-10-08 11:15:58 -0400 |
commit | 097489b4e0bd7fb544848e54fe1f0ebeca979631 (patch) | |
tree | 68e0b4549a469b7c8c6f80119719e019120a33c6 /platform | |
parent | debb1f60a1f220419ed05c9d07f52d71950e1693 (diff) | |
download | uBlock-097489b4e0bd7fb544848e54fe1f0ebeca979631.zip uBlock-097489b4e0bd7fb544848e54fe1f0ebeca979631.tar.gz uBlock-097489b4e0bd7fb544848e54fe1f0ebeca979631.tar.bz2 |
new revision
Diffstat (limited to 'platform')
-rw-r--r-- | platform/chromium/manifest.json | 2 | ||||
-rw-r--r-- | platform/firefox/frameModule.js | 5 | ||||
-rw-r--r-- | platform/opera/manifest.json | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/platform/chromium/manifest.json b/platform/chromium/manifest.json index 77d8beb..3989e98 100644 --- a/platform/chromium/manifest.json +++ b/platform/chromium/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "uBlock Origin", - "version": "1.2.0", + "version": "1.2.1", "default_locale": "en", "description": "__MSG_extShortDesc__", 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; } diff --git a/platform/opera/manifest.json b/platform/opera/manifest.json index d2c481e..221d7e0 100644 --- a/platform/opera/manifest.json +++ b/platform/opera/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "uBlock Origin", - "version": "1.2.0", + "version": "1.2.1", "default_locale": "en", "description": "__MSG_extShortDesc__", |