From 13af7c99c20e63f2800a55368c1b90808f0cdaf3 Mon Sep 17 00:00:00 2001 From: gorhill Date: Thu, 7 May 2015 08:22:42 -0400 Subject: [PATCH] imported fix from https://github.com/chrisaljoudi/uBlock/commit/e06faa, to address https://github.com/chrisaljoudi/uBlock/issues/1363 --- 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 0b7e22a36..edcaf7a3f 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;