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

Add external link for v1.3 #110

parent dcb59e5a
No related branches found
No related tags found
No related merge requests found
......@@ -341,6 +341,18 @@
.lead { color: $secondary-color; margin-bottom: .5rem; }
}
// external links
a.external{
&:after {
content: " x";
font-family: "EBI-Generic";
font-size: .65rem;
position: relative;
top: -1px;
margin-left: .4rem;
}
}
// read more
a.read-more,
a.readmore,
......
......@@ -395,6 +395,18 @@ 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">
......@@ -416,5 +428,9 @@ function invokeResponsiveMenuEBI() {
if (bodyData.foundationExtendEBI === 'true') bodyData.foundationExtendEBI = 'document';
$(bodyData.foundationExtendEBI).foundationExtendEBI();
}
if (bodyData.addExternal) {
addBlankTargetToExternalLinkEBI();
addExternalToBlankWindowLinksEBI();
}
}(jQuery));
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