I came across a bug when activating the responsiveFallback option: it seemed that if that was set at around 600 i would get multiple swipe events bound (to be precise they would be bound 4 times).
I solved this, at the moment, by unbinding 'touchstart', 'touchmove', 'swipeUp' and 'swipeDown' before binding them (lines 44 and 51 inside swipeEvents, line 249 inside responsive function and 314)
For example:
I came across a bug when activating the responsiveFallback option: it seemed that if that was set at around 600 i would get multiple swipe events bound (to be precise they would be bound 4 times).
I solved this, at the moment, by unbinding 'touchstart', 'touchmove', 'swipeUp' and 'swipeDown' before binding them (lines 44 and 51 inside swipeEvents, line 249 inside responsive function and 314) For example:
Not sure if this is the optimal solution but at the moment it solved the issue