Skip to content

Commit

Permalink
Added rel="noopener noreferrer" to external links (#4744)
Browse files Browse the repository at this point in the history
* Added rel="noopener noreferrer" to external links

* Added rel="noopener noreferrer" to external links

* Added rel="noopener noreferrer" to external links
  • Loading branch information
danhogan authored and pksunkara committed Jan 13, 2020
1 parent d7cbe5f commit 9ac7ce5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Expand Up @@ -13,6 +13,7 @@
:disabled="!serveUrl"
:href="serveUrl"
target="_blank"
rel="noopener noreferrer"
/>
<VueIcon
icon="lens"
Expand Down Expand Up @@ -49,7 +50,7 @@
</div>

<div class="logo">
<a href="https://webpack.js.org/" target="_blank">
<a href="https://webpack.js.org/" target="_blank" rel="noopener noreferrer">
<img src="../assets/webpack.svg" class="webpack-logo">
</a>
</div>
Expand Down
Expand Up @@ -6,6 +6,7 @@
<a
:href="item.link"
target="_blank"
rel="noopener noreferrer"
@click.stop
>
{{ item.title }}
Expand Down
Expand Up @@ -5,6 +5,7 @@
<a
:href="item.link"
target="_blank"
rel="noopener noreferrer"
>
{{ item.title }}
</a>
Expand Down

0 comments on commit 9ac7ce5

Please sign in to comment.