kute.js/dist/kute.jquery.js
Shavkatov Davlat Talatovich 28f20059df Kute jQuery compatiblity fix
I'm added this fix for jQuery for animation all elements, not one.
2015-04-16 19:57:21 +05:00

11 lines
240 B
JavaScript

// KUTE jQuery Plugin for kute.js | by dnp_theme | License - MIT
// $('selector').Kute(options);
(function($) {
$.fn.Kute = function( options ) {
return this.each(function(){
new KUTE.Animate( this, options );
});
};
})(jQuery);