Skip to content

Instantly share code, notes, and snippets.

@leohxj
Last active December 22, 2015 19:38
Show Gist options
  • Save leohxj/6520570 to your computer and use it in GitHub Desktop.
Save leohxj/6520570 to your computer and use it in GitHub Desktop.
stopAnimate for Zepto.js
$.fn.stopAnimte = function() {
var endEvent = $.fx.transitionEnd;
this.css('transition', 'none').unbind(endEvent);
return this;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment