Reputation: 307
How to make owl carousel loop false if item length is less than 3.
<div class="owl-carousel owl-theme">
<div class="item">
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png">
</div>
</div>
Upvotes: 0
Views: 1195
Reputation: 72299
Simply check <img>
length:
loop: $('.item img').lenght > 2 ? true : false,
https://jsfiddle.net/rkLvx3zy/2/
Upvotes: 1