Merge pull request #8248 from vector-im/dbkr/target_blank

Add target="_blank" to footer links
This commit is contained in:
David Baker 2019-01-24 17:20:53 +00:00 committed by GitHub
commit 3c0e8757c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>
);
},