Skip to content

Commit b5d9141

Browse files
committed
Clean up history notes formatting
1 parent 32beb87 commit b5d9141

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

History.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,32 @@
33

44
For example, this is deprecated:
55

6-
element.animate([{'font-size': '0px'}, {'font-size': '10px'}]);
6+
element.animate([{'font-size': '0px'}, {'font-size': '10px'}]);
77

88
and this should be used instead:
99

10-
element.animate([{fontSize: '0px'}, {fontSize: '10px'}]);
10+
element.animate([{fontSize: '0px'}, {fontSize: '10px'}]);
1111

1212
* Added arbitrary easing capitalisation.
13+
1314
* Added "id" effect option. (http://w3c.github.io/web-animations/#dom-keyframeanimationoptions-id)
15+
1416
* Added "oncancel" event handler.
17+
1518
* Added value list keyframe syntax.
1619

1720
As as alternative to:
1821

19-
element.animate([{color: 'red'}, {color: 'green'}, {color: 'blue'}]);
22+
element.animate([{color: 'red'}, {color: 'green'}, {color: 'blue'}]);
2023

2124
you can now use:
2225

23-
element.animate({color: ['red', 'green', 'blue']});
26+
element.animate({color: ['red', 'green', 'blue']});
2427

2528
* Fixed easing TypeError in FireFox Nightly when using groups.
29+
2630
* Fixed delayed animation updates on Safari and Firefox
31+
2732
* Fixed infinite recursion when setting onfinish to null.
2833

2934
### 2.1.4 - *December 1 2015*

0 commit comments

Comments
 (0)