$(function() {
"use strict";
// slider
$(document).ready(function(){
$('.movies-thumbs').slick({
dots: false,
arrows: true,
infinite: true,
speed: 300,
slidesToShow: 5,
slidesToScroll: 1,
autoplay: true,
prevArrow: "",
nextArrow: "",
responsive: [
{
breakpoint: 1025,
settings: {
slidesToShow: 4,
slidesToScroll: 1,
infinite: true,
}
},
{
breakpoint: 769,
settings: {
slidesToShow: 3,
slidesToScroll: 1,
arrows: false,
}
},
{
breakpoint: 500,
settings: {
slidesToShow: 2,
slidesToScroll: 2,
arrows: false,
}
}
]
});
});
});