Created
April 29, 2014 13:18
-
-
Save cbourdage/11400107 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 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