Skip to content

Instantly share code, notes, and snippets.

@diegoarigony
Created July 24, 2014 19:12
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 diegoarigony/b742e9d90d8eda370606 to your computer and use it in GitHub Desktop.
Save diegoarigony/b742e9d90d8eda370606 to your computer and use it in GitHub Desktop.
Disable mobile bounce effect
document.ontouchmove = function(event){
if( header_mb.hasClass('open') ) {
event.preventDefault();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment