Skip to content
Snippets Groups Projects
Commit 623ee5ce authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

quicktip links now opening in parent window

parent d6c8bf82
No related branches found
No related tags found
1 merge request!1552Development
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
@if ($quicktip->title != "") @if ($quicktip->title != "")
<h1 class="quicktip-title"> <h1 class="quicktip-title">
@if ($quicktip->link != "") @if ($quicktip->link != "")
<a href="{{ $quicktip->link }}">{{ $quicktip->title }}</a> <a href="{{ $quicktip->link }}" target="_parent">{{ $quicktip->title }}</a>
@else @else
{{ $quicktip->title }} {{ $quicktip->title }}
@endif @endif
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
<div class="quicktip-detail"> <div class="quicktip-detail">
<h2> <h2>
@if (isset($detail->link)) @if (isset($detail->link))
<a href="{{ $detail->link }}">{{ $detail->title }}</a> <a href="{{ $detail->link }}" target="_parent">{{ $detail->title }}</a>
@else @else
{{ $detail->title }} {{ $detail->title }}
@endif @endif
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
@if ($quicktip->title != "") @if ($quicktip->title != "")
<h1 class="quicktip-title"> <h1 class="quicktip-title">
@if ($quicktip->link != "") @if ($quicktip->link != "")
<a href="{{ $quicktip->link }}">{{ $quicktip->title }}</a> <a href="{{ $quicktip->link }}" target="_parent">{{ $quicktip->title }}</a>
@else @else
{{ $quicktip->title }} {{ $quicktip->title }}
@endif @endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment