fix for gorhill/uBlock#3464 (#3616)

Adding index to insertRule fixed the issue
This commit is contained in:
anvakl 2018-03-17 23:05:36 +05:30 committed by Raymond Hill
parent 23accd1c57
commit 33fa25bbe5
1 changed files with 2 additions and 1 deletions

View File

@ -594,7 +594,8 @@ var pageSelectorFromURLHash = (function() {
if ( tabClass === '' ) { return; }
sheet.insertRule(
'#netInspector tr:not(.' + tabClass + '):not(.tab_bts) ' +
'{display:none;}'
'{display:none;}',
0
);
};