File: //proc/thread-self/cwd/js/base.js
$(document).ready(function () {
$('.wc-category-list').slick({
infinite: false,
slidesToShow: 5,
slidesToScroll: 1,
lazyLoad: 'ondemand',
dots: false,
arrows: false,
responsive: [
{
breakpoint: 1000,
settings: {
slidesToShow: 3.3,
slidesToScroll: 1,
}
}
]
})
$('.wc-related-posts__grid ul').slick({
infinite: false,
slidesToShow: 2,
slidesToScroll: 1,
lazyLoad: 'ondemand',
dots: false,
arrows: false,
responsive: [
{
breakpoint: 1000,
settings: {
slidesToShow: 1.05,
slidesToScroll: 1,
}
}
]
})
$('..wc-related-posts__grid ul').slick({
infinite: false,
slidesToShow: 2,
slidesToScroll: 1,
lazyLoad: 'ondemand',
dots: false,
arrows: false,
responsive: [
{
breakpoint: 1000,
settings: {
slidesToShow: 1.05,
slidesToScroll: 1,
}
}
]
})
$('.wc-header-hamburguer').on('click', function () {
$('.wc-menu-mobile').toggleClass('active');
$('.wc-header-hamburguer .open').toggleClass('hidden');
$('.wc-header-hamburguer .close').toggleClass('visible');
})
})