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
When using this plugin, handling animation callbacks using the deferred format doesn't seem to be possible:
$('.elements').animate({left: '100px'});$.when($('.elements')).done(function(elements){// all elements are done animating});// when animate-enhanced is included the callbacks are fired immediately
The callbacks are fired but they are fired immediately, not when the animation is complete so I'm forced to pass a callback directly to .animate() which doesn't allow the benefits of using deferreds. Disabling the plugin resolves the issue, however, that obviously isn't a desirable solution. I've looked through the source code but haven't grokked it well enough yet to create a solution.
The text was updated successfully, but these errors were encountered:
When using this plugin, handling animation callbacks using the deferred format doesn't seem to be possible:
The callbacks are fired but they are fired immediately, not when the animation is complete so I'm forced to pass a callback directly to
.animate()
which doesn't allow the benefits of using deferreds. Disabling the plugin resolves the issue, however, that obviously isn't a desirable solution. I've looked through the source code but haven't grokked it well enough yet to create a solution.The text was updated successfully, but these errors were encountered: