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

Firefox: fix extension restarting

This commit is contained in:
Deathamns 2015-02-02 11:52:40 +01:00
parent 2465d28a17
commit 43c8d86769

View File

@ -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(