Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EBI-Framework
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ebiwd
EBI-Framework
Commits
be56e363
Commit
be56e363
authored
7 years ago
by
khawkins98
Browse files
Options
Downloads
Patches
Plain Diff
Move location of external link js
parent
2b0af7d6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
js/foundationExtendEBI.js
+16
-12
16 additions, 12 deletions
js/foundationExtendEBI.js
with
16 additions
and
12 deletions
js/foundationExtendEBI.js
+
16
−
12
View file @
be56e363
...
...
@@ -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">
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment