You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code doesn't appear to prevent scrolling the page on iOS Safari. From some quick debugging, the most likely explanation is that it binds its touchMove handler during its touchStart handler, leading Safari to not call the touchMove handler until after a finger is released from the drag action. If it were to bind its touchMove handler before the touch begins, then the touchMove handler is called immediately, and scrolling can be prevented.
The text was updated successfully, but these errors were encountered:
Implemented fix proposed in mattbryson#326 .
Works like a charm, thx @breville !
¡¡¡¡ Further work required !!!!
====================
* test on other mobile browsers (Android)
* update minified file as well
This code doesn't appear to prevent scrolling the page on iOS Safari. From some quick debugging, the most likely explanation is that it binds its touchMove handler during its touchStart handler, leading Safari to not call the touchMove handler until after a finger is released from the drag action. If it were to bind its touchMove handler before the touch begins, then the touchMove handler is called immediately, and scrolling can be prevented.
The text was updated successfully, but these errors were encountered: