Fix the nav item collapse and spy functionality

This commit is contained in:
as027811 2020-10-30 23:39:15 -04:00
parent 1d0985d14c
commit f7397eabc6
2 changed files with 11 additions and 19 deletions

View file

@ -30,6 +30,15 @@
$('#logo').attr("src", invertedLogo);
}
});
// Creates a click handler to collapse the navigation when
// anchors in the mobile nav pop up are clicked
var navMain = $(".navbar-collapse");
navMain.on("click", "a", null, function (e) {
$('.navbar-collapse').collapse('hide');
});
});
})(jQuery);