Skip to content

Instantly share code, notes, and snippets.

@Umbrous
Last active November 24, 2016 07:25
Show Gist options
  • Save Umbrous/b73b135ac11b160ae1e8c01f84bbad7e to your computer and use it in GitHub Desktop.
Save Umbrous/b73b135ac11b160ae1e8c01f84bbad7e to your computer and use it in GitHub Desktop.
close block
$(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