Update freelancer.js

Updated the responsive menu to auto-collapse when a menu item is clicked
This commit is contained in:
Jerome Lachaud 2014-08-01 14:36:25 +01:00
parent 00c16d81bf
commit 40f3f1d2ad
1 changed files with 6 additions and 1 deletions

View File

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