1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00

this fixes overlooked remnants of other ubock

This commit is contained in:
gorhill 2015-05-29 11:19:10 -04:00
parent 66fab9c87e
commit 885c68495b
2 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@
/******************************************************************************/
// Accessing the context of the background page:
// var win = Services.appShell.hiddenDOMWindow.document.querySelector('iframe[src*=ublock]').contentWindow;
// var win = Services.appShell.hiddenDOMWindow.document.querySelector('iframe[src*=ublock0]').contentWindow;
let bgProcess;
let version;

View File

@ -50,11 +50,11 @@ let injectContentScripts = function(win) {
};
let onLoadCompleted = function() {
removeMessageListener('ublock-load-completed', onLoadCompleted);
removeMessageListener('ublock0-load-completed', onLoadCompleted);
injectContentScripts(content);
};
addMessageListener('ublock-load-completed', onLoadCompleted);
addMessageListener('ublock0-load-completed', onLoadCompleted);
if ( docShell ) {
let Ci = Components.interfaces;