add referrer/opener/follow parameters on search results links

fixes #12
This commit is contained in:
Rigel Kent 2020-09-22 16:01:13 +02:00
parent 4f5bf86db2
commit 66a32b5dc5
No known key found for this signature in database
GPG Key ID: 5E53E96A494E452F
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
<div class="video root-result">
<div class="thumbnail">
<a class="img" :title="watchVideoMessage" target="_blank" v-bind:href="video.url">
<a class="img" :title="watchVideoMessage" target="_blank" rel="nofollow noreferrer noopener" v-bind:href="video.url">
<img v-bind:src="getVideoThumbnailUrl()" alt="">
<span class="duration">{{ formattedDuration }}</span>
@ -11,7 +11,7 @@
<div class="information">
<h5 class="title">
<a :title="watchVideoMessage" target="_blank" v-bind:href="video.url">{{ video.name }}</a>
<a :title="watchVideoMessage" target="_blank" rel="nofollow noreferrer noopener" v-bind:href="video.url">{{ video.name }}</a>
</h5>
<div class="description">{{ video.description }}</div>
@ -49,7 +49,7 @@
</div>
<div class="button">
<a class="button-link" target="_blank" v-bind:href="video.url">
<a class="button-link" target="_blank" rel="nofollow noreferrer noopener" v-bind:href="video.url">
{{ watchVideoMessage }}
</a>
</div>