From 26209a3631df6695eadf0117be036c6d0c8bc6b6 Mon Sep 17 00:00:00 2001 From: David Miller Date: Sat, 30 Jan 2016 14:19:53 -0500 Subject: [PATCH] dropdown fix --- js/agency.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/agency.js b/js/agency.js index 28d5104..9de09c8 100644 --- a/js/agency.js +++ b/js/agency.js @@ -21,6 +21,6 @@ $('body').scrollspy({ }) // Closes the Responsive Menu on Menu Item Click -$('.navbar-collapse ul li a').click(function() { +$('.navbar-collapse ul li a:not(.dropdown-toggle)').click(function() { $('.navbar-toggle:visible').click(); -}); \ No newline at end of file +});