mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
this addresses #334
This commit is contained in:
parent
098794537d
commit
19d34d2a40
1 changed files with 3 additions and 3 deletions
|
|
@ -1891,11 +1891,11 @@ vAPI.toolbarButton.init = function() {
|
|||
|
||||
for ( var win of vAPI.tabs.getWindows() ) {
|
||||
var button = win.document.getElementById(wId);
|
||||
if ( buttonInPanel ) {
|
||||
button.classList.remove('badged-button');
|
||||
if ( button === null ) {
|
||||
continue;
|
||||
}
|
||||
if ( button === null ) {
|
||||
if ( buttonInPanel ) {
|
||||
button.classList.remove('badged-button');
|
||||
continue;
|
||||
}
|
||||
button.classList.add('badged-button');
|
||||
|
|
|
|||
Loading…
Reference in a new issue