Skip to content

Commit 9f78e7c

Browse files
committed
Merge pull request #156 from enyojs/ENYO-3003-aarontam
ENYO-3003: Fix easeInBounce calculation.
2 parents 35ac084 + 88555ec commit 9f78e7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/easing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ var easing = module.exports = utils.mixin(animation.easing, /** @lends module:la
274274
* @public
275275
*/
276276
easeInBounce: function (n, t, b, c, d) {
277-
return c - easing.easeOutBounce (d-t, 0, c, d) + b;
277+
return c - easing.easeOutBounce (n, d-t, 0, c, d) + b;
278278
},
279279

280280
/**

0 commit comments

Comments
 (0)