From 68ad90616bbbaaf2d9c840590a512cfe13b26999 Mon Sep 17 00:00:00 2001 From: gorhill Date: Sat, 1 Apr 2017 12:40:02 -0400 Subject: [PATCH] fix #2499 --- platform/chromium/manifest.json | 2 +- platform/chromium/vapi-client.js | 4 ++-- platform/chromium/vapi-common.js | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/platform/chromium/manifest.json b/platform/chromium/manifest.json index 9e98425d1..9fa9a35e8 100644 --- a/platform/chromium/manifest.json +++ b/platform/chromium/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "uBlock Origin", - "version": "1.11.5.104", + "version": "1.11.5.105", "default_locale": "en", "description": "__MSG_extShortDesc__", diff --git a/platform/chromium/vapi-client.js b/platform/chromium/vapi-client.js index efaffeab4..c0f6336f1 100644 --- a/platform/chromium/vapi-client.js +++ b/platform/chromium/vapi-client.js @@ -27,7 +27,7 @@ /******************************************************************************/ -(function() { +(function(self) { /******************************************************************************/ /******************************************************************************/ @@ -525,6 +525,6 @@ vAPI.executionCost.stop('vapi-client.js'); /******************************************************************************/ /******************************************************************************/ -})(); +})(this); /******************************************************************************/ diff --git a/platform/chromium/vapi-common.js b/platform/chromium/vapi-common.js index 70fa49292..a92fe3f4c 100644 --- a/platform/chromium/vapi-common.js +++ b/platform/chromium/vapi-common.js @@ -26,7 +26,7 @@ /******************************************************************************/ /******************************************************************************/ -(function() { +(function(self) { // https://bugs.chromium.org/p/project-zero/issues/detail?id=1225&desc=6#c10 if ( !self.vAPI || !self.vAPI.uBO ) { @@ -102,6 +102,6 @@ try { /******************************************************************************/ -})(); +})(this); /******************************************************************************/