Opening Panels with swipe on swipeable tabs not working

Hey!
I use swipe left to open the panel:

app.panel.create({el:'.panel-left',swipe:true,swipeActiveArea:20});

It works well on pages without swiper but i use swipeable tabs on some pages and the panel doesn’t open on these pages with swipe left. Is there any workaround?

I’ve fixed the problem with a div container inside of the Panel:

<div class="panel panel-left panel-cover">...<div id="panel-grabber"></div></div>

CSS:

.panel{display: block !important}
#panel-grabber{position: absolute; right: -20px; top: 0px; width: 20px; height: 100%;}

The nested div #panel-grabber has a transparent background and is always on the left edge of the screen. It’s above the swiper-wraper and you can grab the panel and swipe it.