Newer
Older
// 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";
});
}
});