1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00
This commit is contained in:
gorhill 2017-11-21 13:38:31 -05:00
parent 815517d4d6
commit b85ea96d1e
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -768,7 +768,7 @@ var filterToDOMInterface = (function() {
var elems;
if ( o.style ) {
elems = document.querySelectorAll(o.style[0]);
lastAction = o.style.join(' ');
lastAction = o.style[0] + ' {' + o.style[1] + '}';
} else if ( o.tasks ) {
elems = vAPI.domFilterer.createProceduralFilter(o).exec();
}