Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
623ee5ce
Commit
623ee5ce
authored
Mar 06, 2020
by
Dominik Hebeler
Browse files
quicktip links now opening in parent window
parent
d6c8bf82
Changes
1
Hide whitespace changes
Inline
Side-by-side
resources/views/parts/quicktip.blade.php
View file @
623ee5ce
...
...
@@ -5,7 +5,7 @@
@
if
(
$quicktip
->
title
!=
""
)
<
h1
class
=
"quicktip-title"
>
@
if
(
$quicktip
->
link
!=
""
)
<
a
href
=
"{{
$quicktip->link
}}"
>
{{
$quicktip
->
title
}}
</
a
>
<
a
href
=
"{{
$quicktip->link
}}"
target
=
"_parent"
>
{{
$quicktip
->
title
}}
</
a
>
@
else
{{
$quicktip
->
title
}}
@
endif
...
...
@@ -32,7 +32,7 @@
<
div
class
=
"quicktip-detail"
>
<
h2
>
@
if
(
isset
(
$detail
->
link
))
<
a
href
=
"{{
$detail->link
}}"
>
{{
$detail
->
title
}}
</
a
>
<
a
href
=
"{{
$detail->link
}}"
target
=
"_parent"
>
{{
$detail
->
title
}}
</
a
>
@
else
{{
$detail
->
title
}}
@
endif
...
...
@@ -47,7 +47,7 @@
@
if
(
$quicktip
->
title
!=
""
)
<
h1
class
=
"quicktip-title"
>
@
if
(
$quicktip
->
link
!=
""
)
<
a
href
=
"{{
$quicktip->link
}}"
>
{{
$quicktip
->
title
}}
</
a
>
<
a
href
=
"{{
$quicktip->link
}}"
target
=
"_parent"
>
{{
$quicktip
->
title
}}
</
a
>
@
else
{{
$quicktip
->
title
}}
@
endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment