Last active
November 24, 2016 07:25
-
-
Save Umbrous/b73b135ac11b160ae1e8c01f84bbad7e to your computer and use it in GitHub Desktop.
close block
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
$(document).click(function(event) { | |
if($(window).width() < 1211){ | |
if ($(event.target).closest('.navigation, .hamburger').length) return; | |
$('.navigation').hide("slow"); | |
$hamburger.removeClass('is-active'); | |
$body.css('overflow', 'auto'); | |
event.stopPropagation(); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment