Skip to content

Commit c27cb7e

Browse files
author
Aaron Barker
committed
add changelog
update to 1.1.0 after recent contributions
1 parent 2c78806 commit c27cb7e

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@ This is an attempt at a very basic [CSS variables (custom properties)](https://d
55

66
According to [caniuse.com](https://caniuse.com/#feat=css-variables), of current browsers only IE, Edge and Opera Mini do not support CSS variables. This polyfil appears to work on all three really well. I don't see why this wouldn't work on older browsers as well, but I haven't been able to test it on them yet.
77

8-
## Todo
8+
# Changelog
9+
## 1.1.1 - 2018-04-30
10+
- Add support for HTML Imports (thanks @Pilatch)
11+
- Misc IE11 fixes (thanks @proteantech)
12+
## 1.0.0 - 2018-03-09
13+
- Initial release, pulled in from codepen
14+
15+
# Todo
916
- Verify cross domain working or not (it is working from dropbox)
1017
- Option to wait to apply anything until all <link>s are parsed or inject what we have and update as each <link> returns
1118
- Need to test on a more complex CSS file

css-var-polyfill.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*!
2-
* css-var-polyfill.js - v1.0.0
2+
* css-var-polyfill.js - v1.1.0
33
*
44
* Copyright (c) 2018 Aaron Barker <http://aaronbarker.net>
55
* Released under the MIT license
66
*
7-
* Date: 2018-03-09
7+
* Date: 2018-04-30
88
*/
99
let cssVarPoly = {
1010
init: function() {

0 commit comments

Comments
 (0)