sharding-stats
Version:
A cool Dashboard & Manager for showing Live Stats and managing your Discord Bot/Shards
32 lines • 722 B
JavaScript
(function($) {
'use strict';
$.fn.andSelf = function() {
return this.addBack.apply(this, arguments);
}
$(function() {
var isrtl = $("body").hasClass("rtl");
if ($('.owl-carousel').length) {
$('.owl-carousel').owlCarousel({
loop: true,
margin: 10,
dots: false,
nav: true,
rtl: isrtl,
autoplay: true,
autoplayTimeout: 4500,
navText: ["<i class='mdi mdi-chevron-left'></i>", "<i class='mdi mdi-chevron-right'></i>"],
responsive: {
0: {
items: 1
},
600: {
items: 1
},
1000: {
items: 1
}
}
});
}
});
})(jQuery);