Closed

Description
Description
When preventing the sliding from happening (onSlideLeave: return false
) 'touchmove' events are no longer fired on touch devices/screens.
Link to isolated reproduction with no external CSS / JS
Here is a jsfiddle inspired from examples code https://jsfiddle.net/txjkp03h/
Steps to reproduce it
- Added code to prevent SlideLeave
if (this[0].id == "slide1.2" && direction == "right") return false;
- test on a touch device or emulate one on browser
- Slide 'right' (with touchmove) from "Section 1" to "Slide 1.2" : no problem
- Slide 'right' (with touchmove) on "Slide 1.2", nothing happens as expected
- 'touchmove' event is no longer fired in any direction, until click on slide arrow (previous of course)
Same issue when click on slide arrow next on "Slide 1.2", blocks 'touchmove'.
Versions
- fullPage 2.8.8
- jQuery 1.12.4
Tested on Firefox and Chrome, same result.