Merge pull request #1015 from liamaharon/open-support-links-in-new-tab

Add target="_blank" to support tab links, so they open in a new tab. Closes #998
pull/1/head
yann300 7 years ago committed by GitHub
commit 5c111d5980
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      src/app/tabs/support-tab.js

@ -59,9 +59,9 @@ var css = csjs`
var infoText = yo` var infoText = yo`
<div> <div>
Have a question, found a bug or want to propose a feature? Have a look at the Have a question, found a bug or want to propose a feature? Have a look at the
<a href='https://github.com/ethereum/browser-solidity/issues'> issues</a> or check out <a target="_blank" href='https://github.com/ethereum/browser-solidity/issues'> issues</a> or check out
<a href='https://remix.readthedocs.io/en/latest/'> the documentation page on Remix</a> or <a target="_blank" href='https://remix.readthedocs.io/en/latest/'> the documentation page on Remix</a> or
<a href='https://solidity.readthedocs.io/en/latest/'> Solidity</a>. <a target="_blank" href='https://solidity.readthedocs.io/en/latest/'> Solidity</a>.
</div> </div>
` `

Loading…
Cancel
Save