_blank is the correct HTML target for anchors, not _new. Fixes #2679.
parent
182369cbab
commit
5b5363e2c4
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue