Skip to content

Commit

Permalink
Add target="_blank" to footer links
Browse files Browse the repository at this point in the history
  • Loading branch information
dbkr committed Jan 24, 2019
1 parent 2aaed5d commit c773fcb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/views/auth/VectorAuthFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ module.exports = React.createClass({

return (
<div className="mx_AuthFooter">
<a href="https://medium.com/@RiotChat">blog</a>
<a href="https://twitter.com/@RiotChat">twitter</a>
<a href="https://github.com/vector-im/riot-web">github</a>
<a href="https://matrix.org">{ _t('powered by Matrix') }</a>
<a href="https://medium.com/@RiotChat" target="_blank" rel="noopener">blog</a>
<a href="https://twitter.com/@RiotChat" target="_blank" rel="noopener">twitter</a>
<a href="https://github.com/vector-im/riot-web" target="_blank" rel="noopener">github</a>
<a href="https://matrix.org" target="_blank" rel="noopener">{ _t('powered by Matrix') }</a>
</div>
);
},
Expand Down

0 comments on commit c773fcb

Please sign in to comment.