jQuery Plugin Boilerplate

1
2
3
4
5
6
7
(function(window, $, undefined){
$.fn.kmSlide = function(sDirection, iOffset, iDelay){
return this.each(function(){
// Magic
});
};
})(window, jQuery);
0%