1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

minor code reivew: no need to scope to root for re-styling filters

This commit is contained in:
gorhill 2016-07-16 18:15:42 -04:00
parent ac43b00139
commit 6895e6c7f9

View File

@ -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;
}