Skip to content

Instantly share code, notes, and snippets.

@candyan
Last active October 10, 2016 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save candyan/a048abe577ec7c351a10351209b4f634 to your computer and use it in GitHub Desktop.
Save candyan/a048abe577ec7c351a10351209b4f634 to your computer and use it in GitHub Desktop.
zepto.js swipeUp & swipeDown not working on mobile device
add the listener to disable browser scroll.
```document.addEventListener('touchmove', function (event) {
event.preventDefault();
}, false);
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment