Skip to content

Commit

Permalink
Clean up history notes formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
alancutter committed Apr 6, 2016
1 parent 32beb87 commit b5d9141
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions History.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,32 @@

For example, this is deprecated:

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

and this should be used instead:

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

* Added arbitrary easing capitalisation.

* Added "id" effect option. (http://w3c.github.io/web-animations/#dom-keyframeanimationoptions-id)

* Added "oncancel" event handler.

* Added value list keyframe syntax.

As as alternative to:

element.animate([{color: 'red'}, {color: 'green'}, {color: 'blue'}]);
element.animate([{color: 'red'}, {color: 'green'}, {color: 'blue'}]);

you can now use:

element.animate({color: ['red', 'green', 'blue']});
element.animate({color: ['red', 'green', 'blue']});

* Fixed easing TypeError in FireFox Nightly when using groups.

* Fixed delayed animation updates on Safari and Firefox

* Fixed infinite recursion when setting onfinish to null.

### 2.1.4 - *December 1 2015*
Expand Down

0 comments on commit b5d9141

Please sign in to comment.