0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Added target="_blank" to all links that go to the support page.

This commit is contained in:
Jilles Soeters 2014-08-15 16:46:24 +02:00
parent 153a0c818f
commit 4bb94e99f0
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@
<ul id="ember546" class="ember-view ghost-popover fade-in overlay">
<li class="usermenu-profile"><a id="ember548" class="ember-view" href="/ghost/ember/settings/user/">Your Profile</a></li>
<li class="divider"></li>
<li class="usermenu-help"><a href="http://support.ghost.org/">Help / Support</a></li>
<li class="usermenu-help"><a href="http://support.ghost.org/" target="_blank">Help / Support</a></li>
<li class="divider"></li>
<li class="usermenu-signout"><a id="ember556" class="ember-view" href="/ghost/ember/signout/">Sign Out</a></li>
</ul>

View file

@ -27,7 +27,7 @@
{{#gh-popover tagName="ul" classNames="overlay" name="user-menu" closeOnClick="true"}}
<li class="usermenu-profile">{{#link-to "settings.users.user" session.user.slug}}Your Profile{{/link-to}}</li>
<li class="divider"></li>
<li class="usermenu-help"><a href="http://support.ghost.org/">Help / Support</a></li>
<li class="usermenu-help"><a href="http://support.ghost.org/" target="_blank">Help / Support</a></li>
<li class="divider"></li>
<li class="usermenu-signout">{{#link-to "signout"}}Sign Out{{/link-to}}</li>
{{/gh-popover}}