mirror of https://github.com/gorhill/uBlock.git
Trying to fix merge
This commit is contained in:
parent
62c8ffbcc4
commit
825adfa80e
|
@ -74,7 +74,7 @@ function startup(data, reason) {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
if (reason !== APP_STARTUP) {
|
if ( reason !== APP_STARTUP ) {
|
||||||
onReady();
|
onReady();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1139,7 +1139,7 @@ var httpObserver = {
|
||||||
if ( !(channel instanceof Ci.nsIHttpChannel) ) {
|
if ( !(channel instanceof Ci.nsIHttpChannel) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var URI = channel.URI;
|
var URI = channel.URI;
|
||||||
var channelData, result;
|
var channelData, result;
|
||||||
|
|
||||||
|
@ -1483,7 +1483,7 @@ vAPI.toolbarButton.init = function() {
|
||||||
'content: attr(badge);',
|
'content: attr(badge);',
|
||||||
'}'
|
'}'
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
this.CUIEvents = {};
|
this.CUIEvents = {};
|
||||||
|
|
||||||
var updateBadge = function() {
|
var updateBadge = function() {
|
||||||
|
@ -1584,7 +1584,6 @@ vAPI.toolbarButton.init = function() {
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
vAPI.toolbarButton.onBeforeCreated = function(doc) {
|
vAPI.toolbarButton.onBeforeCreated = function(doc) {
|
||||||
|
@ -1654,6 +1653,27 @@ vAPI.toolbarButton.onViewHiding = function({target}) {
|
||||||
target.firstChild.setAttribute('src', 'about:blank');
|
target.firstChild.setAttribute('src', 'about:blank');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vAPI.toolbarButton.updateState = function(win, tabId) {
|
||||||
|
var button = win.document.getElementById(this.id);
|
||||||
|
|
||||||
|
if ( !button ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var icon = this.tabs[tabId];
|
||||||
|
button.setAttribute('badge', icon && icon.badge || '');
|
||||||
|
|
||||||
|
if ( !icon || !icon.img ) {
|
||||||
|
icon = '';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
icon = 'url(' + vAPI.getURL('img/browsericons/icon16.svg') + ')';
|
||||||
|
}
|
||||||
|
|
||||||
|
button.style.listStyleImage = icon;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
||||||
vAPI.toolbarButton.init();
|
vAPI.toolbarButton.init();
|
||||||
|
|
Loading…
Reference in New Issue