_blank is the correct HTML target for anchors, not _new. Fixes #2679.

pull/6/head
Neel Patel 2017-11-21 10:19:11 +00:00 committed by Dave Page
parent 182369cbab
commit 5b5363e2c4
1 changed files with 4 additions and 4 deletions

View File

@ -46,25 +46,25 @@
<div class="well well-lg">
<div class="row">
<div class="col-xs-3 dashboard-link">
<a href="http://www.postgresql.org/docs" target="_new">
<a href="http://www.postgresql.org/docs" target="_blank">
<span class="fa fa-4x dashboard-icon dashboard-pg-doc" aria-hidden="true"></span><br/>
{{ _('PostgreSQL Documentation') }}
</a>
</div>
<div class="col-xs-3 dashboard-link">
<a href="https://www.pgadmin.org" target="_new">
<a href="https://www.pgadmin.org" target="_blank">
<span class="fa fa-4x dashboard-icon fa-globe" aria-hidden="true"></span><br/>
{{ _('pgAdmin Website') }}
</a>
</div>
<div class="col-xs-3 dashboard-link">
<a href="http://planet.postgresql.org" target="_new">
<a href="http://planet.postgresql.org" target="_blank">
<span class="fa fa-4x dashboard-icon fa-book" aria-hidden="true"></span><br/>
{{ _('Planet PostgreSQL') }}
</a>
</div>
<div class="col-xs-3 dashboard-link">
<a href="http://www.postgresql.org/community" target="_new">
<a href="http://www.postgresql.org/community" target="_blank">
<span class="fa fa-4x dashboard-icon fa-users" aria-hidden="true"></span><br/>
{{ _('Community Support') }}
</a>