mirror of https://github.com/gorhill/uBlock.git
toolbar icon: no need to keep looking for a spot once one found
This commit is contained in:
parent
88dac6d4a1
commit
475f80239a
|
@ -2445,7 +2445,7 @@ vAPI.toolbarButton = {
|
|||
if ( !currentsetString ) {
|
||||
continue;
|
||||
}
|
||||
var currentset = currentsetString.split(',');
|
||||
var currentset = currentsetString.split(/\s*,\s*/);
|
||||
var index = currentset.indexOf(tbb.id);
|
||||
if ( index === -1 ) {
|
||||
continue;
|
||||
|
@ -2459,6 +2459,7 @@ vAPI.toolbarButton = {
|
|||
}
|
||||
}
|
||||
toolbar.insertItem(tbb.id, before);
|
||||
break;
|
||||
}
|
||||
|
||||
if ( document.getElementById(tbb.id) !== null ) {
|
||||
|
|
Loading…
Reference in New Issue