Skip to content

Commit

Permalink
Remove target="_blank" in links
Browse files Browse the repository at this point in the history
Can use middle click or open in new tab if we want to open in a new tab.
Let the user decide.
  • Loading branch information
kentor committed May 13, 2017
1 parent ac6d78d commit 780137c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/components/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ module.exports = () => (
<ul>
{talks.map(talk =>
<li key={talk.name}>
<a href={talk.url} target="_blank">{talk.name}</a>
{' – '}
{talk.author}
<a href={talk.url}>{talk.name}</a>{talk.author}
</li>
)}
</ul>
Expand Down

0 comments on commit 780137c

Please sign in to comment.