Skip to content

Instantly share code, notes, and snippets.

@ColtMoney
Created July 5, 2020 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ColtMoney/17b55ba2fb2bf7aa73c9d4cf6c93d57c to your computer and use it in GitHub Desktop.
Save ColtMoney/17b55ba2fb2bf7aa73c9d4cf6c93d57c to your computer and use it in GitHub Desktop.
Initialize slick on media
if (window.matchMedia("(max-width: 576px)").matches) {
$(".teams").slick({
infinite: true,
slidesToScroll: 1,
arrows: false,
dots: true,
slidesToShow: 1,
centerMode: true,
customPaging: function (slider, i) {
return '<div class="slick_custom_dot"></div>';
},
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment