In a project I am using Owl Carousel in combination with featherlight. In Owl Carousel it you have the possibility to activate "mouseDrag" so you can drag the carousel with your mouse. This works fine! Also when I have real hyperlinks inside a slide it does not open them when dragging.
But with featherlight it is different. If I have featherlight-links inside a slide it will open them when I drag the carousel. Why is it like this? Can I somehow correct this behavior?
I made a code example which demonstrates the problem: (please drag the two carousels)
https://codepen.io/xj6652/pen/OJNPOqj
While dragging the carousel it will open the lightbox:
<div class="owl-carousel featherlightlinks">
<div>
<a href="#" data-featherlight="#content" class="blocklink"></a>
</div>
…
</div>
But with normal links inside a slide this does not happen:
<div class="owl-carousel reallinks">
<div>
<a href="http://codepen.io" class="blocklink"></a>
</div>
…
</div>
How can I fix this?