Update freelancer.js

Updated the responsive menu to auto-collapse when a menu item is clicked
main
Jerome Lachaud 10 years ago
parent 00c16d81bf
commit 40f3f1d2ad

@ -30,3 +30,8 @@ $(function() {
$('body').scrollspy({
target: '.navbar-fixed-top'
})
// Closes the Responsive Menu on Menu Item Click
$('.navbar-collapse ul li a').click(function() {
$('.navbar-toggle:visible').click();
});

Loading…
Cancel
Save