this.$historySld.slick({
arrows: false,
infinite: false,
speed: 800,
dots: true,
dotsClass: 'history__slider-dots',
customPaging: function (slider, i) {
const $yearText = $(slider.$slides[i]).find('.history__slider-text').data('history-year');
return `<button type="button">${$yearText}</button>`;
}
});