mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
minor code reivew: no need to scope to root for re-styling filters
This commit is contained in:
parent
ac43b00139
commit
6895e6c7f9
1 changed files with 1 additions and 1 deletions
|
@ -280,7 +280,7 @@ var domFilterer = {
|
|||
|
||||
// Stock job 1 = css rules/any css declaration
|
||||
if ( this.job1._0.length ) {
|
||||
styleText += '\n:root ' + this.job1._0.join('\n:root ');
|
||||
styleText += '\n' + this.job1._0.join('\n');
|
||||
this.job1._0.length = 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue