Skip to content

Instantly share code, notes, and snippets.

@bitflower
Created January 8, 2015 07:09
Show Gist options
  • Save bitflower/bd7b9cceead1ff914e75 to your computer and use it in GitHub Desktop.
Save bitflower/bd7b9cceead1ff914e75 to your computer and use it in GitHub Desktop.
Stop scroll bouncing on touch devices
// Stop scroll bouncing
document.ontouchmove = function(e) {
e.preventDefault();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment