jQuery(document).ready(function ($) { if (hotell_data.rtl == "1") { rtl = true; } else { rtl = false; } //news-and-blogs Slider if ($(".news-and-blogs__slider").length > 0) { $(".news-and-blogs__slider").owlCarousel({ // loop: true, autoplay: true, autoplayTimeout: 4000, autoplayHoverPause: true, nav: true, margin: 30, dots: false, rtl: rtl, thumbContainerClass: "owl-thumbs", responsive: { 0: { items: 1, }, 767: { items: 2, margin: 24, }, // 1199: { // items: 3, // }, }, }); } //foot-top__right Slider if ($(".foot-top__right").length > 0) { $(".foot-top__right").owlCarousel({ autoplay: true, autoplayTimeout: 2000, autoplayHoverPause: true, loop: true, nav: false, dots: false, margin: 20, rtl: rtl, responsive: { 0: { items: 2, margin: 10, }, 768: { items: 3, margin: 18, }, 992: { items: 4, margin: 20, }, }, }); } });