add referrer/opener/follow parameters on search results links
fixes #12
This commit is contained in:
parent
4f5bf86db2
commit
66a32b5dc5
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue