mirror of https://github.com/gorhill/uBlock.git
Firefox: fix extension restarting
This commit is contained in:
parent
2465d28a17
commit
43c8d86769
|
@ -30,6 +30,7 @@
|
|||
// var win = Services.appShell.hiddenDOMWindow.document.querySelector('iframe[src*=ublock]').contentWindow;
|
||||
|
||||
let bgProcess;
|
||||
let version;
|
||||
const hostName = 'ublock';
|
||||
const restartListener = {
|
||||
get messageManager() {
|
||||
|
@ -46,6 +47,10 @@ const restartListener = {
|
|||
/******************************************************************************/
|
||||
|
||||
function startup(data, reason) {
|
||||
if ( data !== undefined ) {
|
||||
version = data.version;
|
||||
}
|
||||
|
||||
let appShell = Components.classes['@mozilla.org/appshell/appShellService;1']
|
||||
.getService(Components.interfaces.nsIAppShellService);
|
||||
|
||||
|
@ -60,7 +65,7 @@ function startup(data, reason) {
|
|||
);
|
||||
bgProcess.setAttribute(
|
||||
'src',
|
||||
'chrome://' + hostName + '/content/background.html#' + data.version
|
||||
'chrome://' + hostName + '/content/background.html#' + version
|
||||
);
|
||||
|
||||
restartListener.messageManager.addMessageListener(
|
||||
|
|
Loading…
Reference in New Issue