// Generated by CoffeeScript 1.9.3 (function() { var $; $ = jQuery; $.fn.extend({ animateCSS: function(className, callback) { var animationEnd; animationEnd = "animationend transitionend"; return this.each(function() { var $this; $this = $(this); return $this.queue(function(next) { return $this.addClass(className).one(animationEnd, function() { if (typeof callback === "function") { callback(); } return next(); }); }); }); } }); }).call(this); //# sourceMappingURL=jquery.animateCSS.js.map