Is there anyway to disable rewind feature on OwlCarousel2 (v2.3.4)?
I notice that when scrolling or clicking the paginations while in mobile device, it starts to rewind when i reached the last item (regardless if i have loop enabled).
I already tried setting rewind & navrewind to false & it still rewinds back. I also tested the if i'd get the same issue with same resolution on desktop/pc but i didnt, it seem to only occur when navigating on mobile.
Is there anyway to disable this rewind feature completely?
Here's my current code:
$(".home-slides").owlCarousel({
checkVisibility: true,
rewind: false,
navRewind:false,
smartSpeed: 90,
autoplay: false,
autoplayHoverPause: true,
dots: false,
pagination: false,
nav: true,
slideSpeed: 100,
paginationSpeed: 400,
loop: true,
items: 7,
slideBy: 7,
margin: 10,
stagePadding:50
});