mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
Firefox: badge color fix
This commit is contained in:
parent
16218a1609
commit
d660604b8d
1 changed files with 5 additions and 5 deletions
|
@ -1491,7 +1491,7 @@ vAPI.toolbarButton.init = function() {
|
|||
);
|
||||
} else {
|
||||
this.CUIEvents = {};
|
||||
this.CUIEvents.updateBadge = function() {
|
||||
var updateBadge = function() {
|
||||
var wId = vAPI.toolbarButton.id;
|
||||
var buttonInPanel = CustomizableUI.getWidget(wId).areaType === CustomizableUI.TYPE_MENU_PANEL;
|
||||
|
||||
|
@ -1513,9 +1513,9 @@ vAPI.toolbarButton.init = function() {
|
|||
|
||||
// Anonymous elements need some time to be reachable
|
||||
setTimeout(this.updateBadgeStyle, 250);
|
||||
};
|
||||
this.CUIEvents.onCustomizeEnd = this.CUIEvents.updateBadge;
|
||||
this.CUIEvents.onWidgetUnderflow = this.CUIEvents.updateBadge;
|
||||
}.bind(this.CUIEvents);
|
||||
this.CUIEvents.onCustomizeEnd = updateBadge;
|
||||
this.CUIEvents.onWidgetUnderflow = updateBadge;
|
||||
|
||||
this.CUIEvents.updateBadgeStyle = function() {
|
||||
var css = [
|
||||
|
@ -1543,7 +1543,7 @@ vAPI.toolbarButton.init = function() {
|
|||
|
||||
this.onCreated = function(button) {
|
||||
button.setAttribute('badge', '');
|
||||
setTimeout(this.CUIEvents.updateBadge, 250);
|
||||
setTimeout(updateBadge, 250);
|
||||
};
|
||||
|
||||
CustomizableUI.addListener(this.CUIEvents);
|
||||
|
|
Loading…
Reference in a new issue