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

This commit is contained in:
Neel Patel 2017-11-21 10:19:11 +00:00 committed by Dave Page
parent 182369cbab
commit 5b5363e2c4

View File

@ -46,25 +46,25 @@
<div class="well well-lg"> <div class="well well-lg">
<div class="row"> <div class="row">
<div class="col-xs-3 dashboard-link"> <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/> <span class="fa fa-4x dashboard-icon dashboard-pg-doc" aria-hidden="true"></span><br/>
{{ _('PostgreSQL Documentation') }} {{ _('PostgreSQL Documentation') }}
</a> </a>
</div> </div>
<div class="col-xs-3 dashboard-link"> <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/> <span class="fa fa-4x dashboard-icon fa-globe" aria-hidden="true"></span><br/>
{{ _('pgAdmin Website') }} {{ _('pgAdmin Website') }}
</a> </a>
</div> </div>
<div class="col-xs-3 dashboard-link"> <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/> <span class="fa fa-4x dashboard-icon fa-book" aria-hidden="true"></span><br/>
{{ _('Planet PostgreSQL') }} {{ _('Planet PostgreSQL') }}
</a> </a>
</div> </div>
<div class="col-xs-3 dashboard-link"> <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/> <span class="fa fa-4x dashboard-icon fa-users" aria-hidden="true"></span><br/>
{{ _('Community Support') }} {{ _('Community Support') }}
</a> </a>