Не удается повторно вызывать сову-карусель после загрузки ajax контента.
Пробовал так, но не работает:
$(".news__item__gallery").data('owlCarousel').destroy();
AJAX контент вызываю так
$('.popup-with-form').magnificPopup({
type: 'ajax',
mainClass: "mfp-fade",
closeBtnInside: true,
gallery: {
enabled: true,
},
callbacks: {
ajaxContentAdded: function() {
$(".news__item__gallery").data('owlCarousel').destroy();
}
}
});
Сову так:
$('.news__item__gallery').owlCarousel({
loop: true,
margin: 50,
dots: false,
nav: true,
responsive: {
0: {
items: 1
},
720: {
items: 3
},
1000: {
items: 4
}
}
})