We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74e5c06 commit 7f74edcCopy full SHA for 7f74edc
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, otherwise bootstrap
33
+// 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