diff --git a/README.md b/README.md index 96cb1ef..bd3c608 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,6 @@ Used on about 11'000 [Live Websites](https://publicwww.com/websites/ie11CustomPr **[See the demo!](https://rawcdn.githack.com/nuxodin/ie11CustomProperties/6c465d21a8c043a45cba939995bb434966048377/demo.html)** -**New in v4.0.0: Very fast now** - ## Features - chaining `--bar:var(--foo)` @@ -31,7 +29,7 @@ Used on about 11'000 [Live Websites](https://publicwww.com/websites/ie11CustomPr ## Usage You only want IE11 to load the polyfill, use this snippet in the head of your html file, it just works: ```html - + ``` ## Help wanted! diff --git a/ie11CustomProperties.js b/ie11CustomProperties.js index 3846bd3..b0161d2 100644 --- a/ie11CustomProperties.js +++ b/ie11CustomProperties.js @@ -1,4 +1,4 @@ -/*! ie11CustomProperties.js v4.0.1 | MIT License | https://git.io/fjXMN */ +/*! ie11CustomProperties.js v4.1.0 | MIT License | https://git.io/fjXMN */ !function () { 'use strict'; @@ -198,7 +198,6 @@ if (propName[0] === '❗') propName = propName.substr(1); getters.push(propName); - // beta if (!styles_of_getter_properties[propName]) styles_of_getter_properties[propName] = []; styles_of_getter_properties[propName].push(style); } @@ -274,7 +273,6 @@ drawTree(el); } - //beta function redrawStyleSheets() { for (var prop in styles_of_getter_properties) { let styles = styles_of_getter_properties[prop]; diff --git a/package.json b/package.json index 1fb074d..95f2c0b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ie11-custom-properties", - "version": "4.0.1", + "version": "4.1.0", "description": "Custom Properties polyfill for IE11.", "main": "ie11CustomProperties.js", "author": "Tobias Buschor",