mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-19 09:33:47 +00:00
Fix target="_blank" (#794)
It's tricky because "blank" (without an underscore) will still open a new tab, but it's actually being interpreted as a browsing context name, and so clicking it a second time will replace the previously opened tab (even if navigated away).
This commit is contained in:
parent
0fded822f8
commit
05741eccfd
1 changed files with 1 additions and 1 deletions
|
|
@ -156,7 +156,7 @@ export class MainWindow extends React.Component<Props> {
|
|||
</div>
|
||||
<a
|
||||
id="about"
|
||||
target="blank"
|
||||
target="_blank"
|
||||
href="https://webamp.org/about"
|
||||
title="About"
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue