From 2650d30063f5c437d8738418f49880aa2dd34790 Mon Sep 17 00:00:00 2001 From: Scott Wallace Date: Sat, 17 May 2014 15:48:46 +0100 Subject: [PATCH] Fixed an issue with Safari re-opening the external link in the current tab/window. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 1ab0d55..0d478fc 100644 --- a/index.html +++ b/index.html @@ -120,7 +120,7 @@ ga('send', 'pageview'); var trackOutboundLink = function(url) { - ga('send', 'event', 'outbound', 'click', url, {'hitCallback': function () { document.location = url; } }); + ga('send', 'event', 'outbound', 'click', url); }