From 99132f37204e7f969b58ada012dc5dfd75659c25 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Fri, 24 Mar 2017 09:17:47 -0400 Subject: [PATCH] Return false after the click. --- js/front.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/front.js b/js/front.js index 64004fe..d65b41c 100644 --- a/js/front.js +++ b/js/front.js @@ -2,5 +2,6 @@ jQuery(document).ready(function($){ $("a.google-map-link").on("click",function(){ var address = $(this).data('location'); window.open('https://maps.google.com/?q=' + address, '_blank'); + return false; }); }); -- 2.17.1