Skip to content
Snippets Groups Projects
mobile_menu.js 270 B
Newer Older
Brad's avatar
Brad committed
// detects if mobile menu is visible. if it is upon click outside of the menu the menu will close
$(window).bind("load resize", function(){
	if ($("#mobile-nav").css("width") != "0"){
		$("#dark-cover").click(function(){
			window.location.hash = "#return";
		});
	}
});