Skip to content
Snippets Groups Projects
Commit be56e363 authored by khawkins98's avatar khawkins98
Browse files

Move location of external link js

parent 2b0af7d6
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,22 @@ function analyticsTrackInteraction(actedOnItem, parentContainer, customEventName
}
} // END analyticsTrackInteraction
// Programatically open external links in new tabs, and add '.external'
function addBlankTargetToExternalLinkEBI(parent) {
(function($) {
var parent = parent || '#content';
$(parent + ' a').filter(function() {
return this.hostname && this.hostname !== location.hostname;
}).attr('target','_blank');
}(jQuery));
}
function addExternalToBlankWindowLinksEBI(parent) {
(function($) {
var parent = parent || '#content';
$(parent + ' a[target="_blank"]').addClass('external');
}(jQuery));
}
// initialise the tracking of various areas
function ebiGaInit() {
// Only track these areas
......@@ -395,18 +411,6 @@ function invokeResponsiveMenuEBI() {
}
// Programatically open external links in new tabs, and add '.external'
function addBlankTargetToExternalLinkEBI(parent) {
var parent = parent || '#content';
$(parent + ' a').filter(function() {
return this.hostname && this.hostname !== location.hostname;
}).attr('target','_blank');
}
function addExternalToBlankWindowLinksEBI(parent) {
var parent = parent || '#content';
$(parent + ' a[target="_blank"]').addClass('external');
}
/* Allow invokation of of foundation and foundationExtendEBI with data attributes
<body data-foundationInvoke="document" data-foundationExtendEBI="document">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment