$(document).ready(function(){
$('.image-additional-carousel').owlCarousel({
items: 6,
itemsDesktop : [1199,5],
itemsDesktopSmall : [979,4],
itemsTablet : [768,4],
itemsMobile : [479,3],
autoPlay: false,
navigation: true,
navigationText: ['
', '
'],
loop: true,
pagination: true
});
});
$('.thumbnails').each(function() {
var $container = $(this);
var $imageLinks = $container.find('.dataitem');
var items = [
];
$imageLinks.magnificPopup({
mainClass: 'mfp-fade',
items: items,
gallery:{
enabled:true
},
type: 'image',
callbacks: {
beforeOpen: function() {
var index = $imageLinks.index(this.st.el);
if (-1 !== index) {
this.goTo(index);
}
}
}
});
});
$(document).ready(function() {
$('.thumbnails-one').magnificPopup({
items: [
],
type:'image',
callbacks: {
open: function() {
$('.magnify-lens').hide();
}
},
gallery: {
enabled:true
}
});
});