core
core copied to clipboard
Support swiping for mobile devices
How is that done in HTML?
There is a multi touch api in js, but you probably want to use one of the existing and tested libraries like https://github.com/thebird/Swipe
API is very basic, you give it a Dom element and specify the callbacks on swipe
To make it smooth you probably want to fetch all the content before and avoid a page redraw. See also #152
As it seems that we need a proper solution for this, I reopen.
Please do not override default behavior for mobile devices. It is very annoying for user to have a normal operation suddenly do something else.
But there isn't a default way to swipe to the next page on mobile devices, or is there? I thought that supporting swipe gestures would be more "intuitive" - at least if it's done right.