Skip to content

Commit b1b43ff

Browse files
committed
Merge pull request jeromelachaud#8 from jeromelachaud/patch-2
Patch 2
2 parents 74e5c06 + fe3c043 commit b1b43ff

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

js/grayscale.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ $('.navbar-collapse ul li a').click(function() {
2929
$('.navbar-toggle:visible').click();
3030
});
3131

32+
// remove the focused state after click,
33+
// otherwise bootstrap will still highlight the link
34+
$("a").mouseup(function(){
35+
$(this).blur();
36+
})
37+
3238
// Google Maps Scripts
3339
// When the window has finished loading create our google map below
3440
google.maps.event.addDomListener(window, 'load', init);

0 commit comments

Comments
 (0)