Skip to content

Instantly share code, notes, and snippets.

@imjakechapman
Created May 13, 2014 23:15
Show Gist options
  • Select an option

  • Save imjakechapman/c5b7c81174cfe7e9ff16 to your computer and use it in GitHub Desktop.

Select an option

Save imjakechapman/c5b7c81174cfe7e9ff16 to your computer and use it in GitHub Desktop.
Disable overscroll while mobile navigation is open
// Disable overscroll / viewport moving when a menu is open
$body.on('touchmove', function (e) {
if ( $body.hasClass('is-active') ) e.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment