mirror of https://github.com/gorhill/uBlock.git
fix #3257
This commit is contained in:
parent
815517d4d6
commit
b85ea96d1e
|
@ -768,7 +768,7 @@ var filterToDOMInterface = (function() {
|
||||||
var elems;
|
var elems;
|
||||||
if ( o.style ) {
|
if ( o.style ) {
|
||||||
elems = document.querySelectorAll(o.style[0]);
|
elems = document.querySelectorAll(o.style[0]);
|
||||||
lastAction = o.style.join(' ');
|
lastAction = o.style[0] + ' {' + o.style[1] + '}';
|
||||||
} else if ( o.tasks ) {
|
} else if ( o.tasks ) {
|
||||||
elems = vAPI.domFilterer.createProceduralFilter(o).exec();
|
elems = vAPI.domFilterer.createProceduralFilter(o).exec();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue