From e06faa94229b8e81139d2703635f8a57fef49a1d Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 7 May 2015 00:54:25 -0600 Subject: [PATCH] Fixes #1363; elemhide symantics were reversed --- src/js/static-net-filtering.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index eec099fd5..2da8f8401 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -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;