1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-06 02:59:39 +02:00
This commit is contained in:
Raymond Hill 2018-03-07 06:28:26 -05:00
parent a470c119aa
commit 333c6f60fb
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -181,14 +181,6 @@ var fromCosmeticFilter = function(details) {
found = prefix + selector;
}
break;
case 1: // id-based
if (
fargs[2] === selector.slice(1) &&
selector.charAt(0) === '#'
) {
found = prefix + selector;
}
break;
case 2: // class-based
if (
fargs[1] === selector.slice(1) &&
@ -197,11 +189,9 @@ var fromCosmeticFilter = function(details) {
found = prefix + selector;
}
break;
case 3:
if (
fargs[2] === selector.slice(1) &&
selector.charAt(0) === '.'
) {
case 1: // id-based
case 3: // class-based
if ( fargs[2] === selector ) {
found = prefix + selector;
}
break;