When calling with duration=0, e.g. $.animate({...},0,easing,callback), after loaded jquery.transition.js, the script throws an error.
TypeError: Object #<$> has no method 'update'
I know a durationof zero shouldn't be passed to $.animate(), which unluckily do happen sometimes, and the original jQuery script will treat it properly. Please, apply a small (probably one-line) fix to avoid css-transition?
When calling with duration=0, e.g.
$.animate({...},0,easing,callback)
, after loaded jquery.transition.js, the script throws an error.TypeError: Object #<$> has no method 'update'
I know a durationof zero shouldn't be passed to $.animate(), which unluckily do happen sometimes, and the original jQuery script will treat it properly. Please, apply a small (probably one-line) fix to avoid css-transition?