From 734ff334d86ed8cd6f649bc1e6b08fb3ff98126c Mon Sep 17 00:00:00 2001 From: Tobias Buschor Date: Tue, 9 Jun 2020 23:58:07 +0200 Subject: [PATCH] Update ie11CustomProperties.js --- ie11CustomProperties.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ie11CustomProperties.js b/ie11CustomProperties.js index 6fdcf24..ce1f356 100644 --- a/ie11CustomProperties.js +++ b/ie11CustomProperties.js @@ -196,7 +196,7 @@ function parseRewrittenStyle(style) { // less memory then parameter cssText? // ie11 can access unknown properties in stylesheets only if accessed a dashed known property - if (style['z-index'] === style) return; // do something (compare and return) just for minifiers + style['z-index'] === style && x(); // do something (compare and call) just for minifiers const cssText = style.cssText; var matchesGetters = cssText.match(regRuleIEGetters), j, match;