In Owl carousel 1 I could specify different number of items to be shown depending on the viewport width:
items:5,
itemsDesktop:[1199,4],
itemsDesktopSmall:[979,3],
itemsTablet:[768,2],
itemsMobile:[479,1]
However, the code above doesn't work with Owl carousel 2. Also the specs suggest the only option to use:
items: 3 // or any ther number here
So it's the same number of items shown on mobile and desktop. Did I miss something?