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
498a4280
Commit
498a4280
authored
7 years ago
by
khawkins98
Browse files
Options
Downloads
Patches
Plain Diff
Add external link for v1.3 #110
parent
dcb59e5a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
css/ebi-css-build/ebi-global.scss
+12
-0
12 additions, 0 deletions
css/ebi-css-build/ebi-global.scss
js/foundationExtendEBI.js
+16
-0
16 additions, 0 deletions
js/foundationExtendEBI.js
with
28 additions
and
0 deletions
css/ebi-css-build/ebi-global.scss
+
12
−
0
View file @
498a4280
...
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
js/foundationExtendEBI.js
+
16
−
0
View file @
498a4280
...
...
@@ -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
));
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