You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It only does not work with this combination: animation -> delay/timeout -> stop() -> animation
the second animation will trigger the callback of the first one, even though .stop() was called.
( Sorry for my bad English)
The text was updated successfully, but these errors were encountered:
I think the problem is when unbinding the animation handler in line 290
// Unbind the animation end handlerself.off(getBrowser().transitionEnd,animationEnd);
as seen in line 311
// Attach the transition end event handler to run only onceself.one(getBrowser().transitionEnd,function(){// Call animationEnd using the passed propertiesanimationEnd(props,true);done();});
It was not bound with the 'animationEnd' function...
jsfiddle: http://jsfiddle.net/DarkArgon/7eDuT/4/
without jquery++ : http://jsfiddle.net/DarkArgon/4SQfJ/1/
It only does not work with this combination: animation -> delay/timeout -> stop() -> animation
the second animation will trigger the callback of the first one, even though .stop() was called.
( Sorry for my bad English)
The text was updated successfully, but these errors were encountered: