thumbs: {
swiper: {
el: '.main-thumbs',
slidesPerView: 3
}
}
thumbs: {
swiper: galleryThumbs
}
$('form').submit(function(){
var button = $(this).find('button')
button.prop('disabled', true)
$.ajax({
url: 'script.php',
success: function(response){
button.prop('disabled', false)
}
}
})
if( $(window).width() <= 768 ) {
$('.filter__wrap-item').slick({
slidesToShow: 2,
slidesToScroll: 1,
arrows: true,
dots: true,
infinite: false,
responsive: [
{
breakpoint: 2500,
settings: "unslick",
},
{
breakpoint: 992,
settings: "slick",
},
]
})
}