We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 74e5c06 + fe3c043 commit b1b43ffCopy full SHA for b1b43ff
1 file changed
js/grayscale.js
@@ -29,6 +29,12 @@ $('.navbar-collapse ul li a').click(function() {
29
$('.navbar-toggle:visible').click();
30
});
31
32
+// remove the focused state after click,
33
+// otherwise bootstrap will still highlight the link
34
+$("a").mouseup(function(){
35
+ $(this).blur();
36
+})
37
+
38
// Google Maps Scripts
39
// When the window has finished loading create our google map below
40
google.maps.event.addDomListener(window, 'load', init);
0 commit comments