You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use the pseudo attributes ::-webkit-scrollbar to stylize the scroll bar and found that this gives an invalid argument in the call to document.querySelectorAll(rule.selector).
We modified the function indexRules so that when the selector is extracted we remove all colons. var selector = (parsedRule[0].trim()).replace(/:/g,'');
Not sure if this has any side effects.
The text was updated successfully, but these errors were encountered:
We use the pseudo attributes ::-webkit-scrollbar to stylize the scroll bar and found that this gives an invalid argument in the call to document.querySelectorAll(rule.selector).
We modified the function indexRules so that when the selector is extracted we remove all colons.
var selector = (parsedRule[0].trim()).replace(/:/g,'');
Not sure if this has any side effects.
The text was updated successfully, but these errors were encountered: