Skip to content

Commit

Permalink
Fix #100
Browse files Browse the repository at this point in the history
  • Loading branch information
juliangarnier committed Dec 24, 2016
1 parent fc5b81e commit b76605c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion anime.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
var eases = {};
var names = ['Quad', 'Cubic', 'Quart', 'Quint', 'Expo'];
var functions = {
Sine: function(t) { return 1 - Math.cos( t * Math.PI / 2 ); },
Sine: function(t) { return 1 + Math.sin(Math.PI / 2 * t - Math.PI / 2); },
Circ: function(t) { return 1 - Math.sqrt( 1 - t * t ); },
Elastic: function(t, m) {
if( t === 0 || t === 1 ) return t;
Expand Down
4 changes: 2 additions & 2 deletions anime.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b76605c

Please sign in to comment.