A suggested solution is to add the swipe threshold, like this:
Line 406:
if (!$this.data('doubletapped') && !$this.data('tapheld') && (Math.abs(start_pos.x - end_pos_x) < settings.swipe_v_threshold) && (Math.abs(start_pos.y - end_pos_y) < settings.swipe_h_threshold)) {
A suggested solution is to add the swipe threshold, like this:
Line 406:
if (!$this.data('doubletapped') && !$this.data('tapheld') && (Math.abs(start_pos.x - end_pos_x) < settings.swipe_v_threshold) && (Math.abs(start_pos.y - end_pos_y) < settings.swipe_h_threshold)) {