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

@ -29,4 +29,9 @@ $(function() {
// Highlight the top nav as scrolling occurs
$('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();
});