mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Fixes #1363; elemhide symantics were reversed
This commit is contained in:
parent
b380c9181e
commit
e06faa9422
1 changed files with 1 additions and 1 deletions
|
|
@ -1334,7 +1334,7 @@ FilterParser.prototype.parseOptions = function(s) {
|
|||
continue;
|
||||
}
|
||||
if ( opt === 'elemhide' ) {
|
||||
if ( this.action !== AllowAction ) {
|
||||
if ( this.action === AllowAction ) {
|
||||
this.parseOptType('elemhide', false);
|
||||
this.action = BlockAction;
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Reference in a new issue