Commit 33587eb2 by Dmitry Baranovskiy

Small code cleanup and docs update

parent e1fb048f
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -3515,8 +3515,7 @@ ...@@ -3515,8 +3515,7 @@
elproto.animateWith = function (element, anim, params, ms, easing, callback) { elproto.animateWith = function (element, anim, params, ms, easing, callback) {
var a = params ? R.animation(params, ms, easing, callback) : anim; var a = params ? R.animation(params, ms, easing, callback) : anim;
status = element.status(anim); status = element.status(anim);
this.animate(a); return this.animate(a).status(a, status * anim.ms / a.ms);
return this.status(a, status * anim.ms / a.ms);
}; };
function CubicBezierAtTime(t, p1x, p1y, p2x, p2y, duration) { function CubicBezierAtTime(t, p1x, p1y, p2x, p2y, duration) {
var cx = 3 * p1x, var cx = 3 * p1x,
......
...@@ -2562,8 +2562,7 @@ ...@@ -2562,8 +2562,7 @@
elproto.animateWith = function (element, anim, params, ms, easing, callback) { elproto.animateWith = function (element, anim, params, ms, easing, callback) {
var a = params ? R.animation(params, ms, easing, callback) : anim; var a = params ? R.animation(params, ms, easing, callback) : anim;
status = element.status(anim); status = element.status(anim);
this.animate(a); return this.animate(a).status(a, status * anim.ms / a.ms);
return this.status(a, status * anim.ms / a.ms);
}; };
function CubicBezierAtTime(t, p1x, p1y, p2x, p2y, duration) { function CubicBezierAtTime(t, p1x, p1y, p2x, p2y, duration) {
var cx = 3 * p1x, var cx = 3 * p1x,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment