I'm newbie with ionic yet so I wonder to know how to prevent opening left side menu when user swipe on carousel. Here is the gif that explains what happening GIF
I am swiping owlCarousel to the left it shows next slide - it is ok. When I am swiping to right sidebar begins to unfold. How avoid this?
I asked the same on ionic forum but yet no one helped me.
You could disable the canDragContent functionality when you are on your carousel view like this:
$ionicSideMenuDelegate.canDragContent(false)
If you still need the canDragContent function in your view you could also encapsulate that into your carousel callback. So that you only disable the swipeBack funtionality during the carousel is touched.