Skip to content

Instantly share code, notes, and snippets.

@cbourdage
Created April 29, 2014 13:18
Show Gist options
  • Select an option

  • Save cbourdage/11400107 to your computer and use it in GitHub Desktop.

Select an option

Save cbourdage/11400107 to your computer and use it in GitHub Desktop.
/**
* keep body from scrolling when nav menu is open in iOS
*/
$(document).on('touchmove', function(e){
if($('body').hasClass('nav-showing')){
var $target = $(e.target);
if($target.is('#nav-wrapper') || $target.parents('#nav-wrapper')){
e.stopPropagation();
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment