jquerymobile-swipeupdown icon indicating copy to clipboard operation
jquerymobile-swipeupdown copied to clipboard

A jQuery Mobile plugin to add swipe up and swipe down functionality

Results 3 jquerymobile-swipeupdown issues
Sort by recently updated
recently updated
newest added

This line here: ``` var data = event.originalEvent.touches ? event.originalEvent.touches[ 0 ] : event; ``` Should be more like: ``` var data = 'originalEvent' in event && 'touches' in event.originalEvent...

Hi, i have this code and whien i swipe down nothing seems to happen. I triggered the event manually and the event listener run the code. But it doesn't seem...

Hi, I am loving this library. I would like to keep the ammount of jquery to load at an minimum. Do you know which of the components from jQuery mobile...