Merge pull request #3788 from jillesme/master

Open the e-mail sending support page in a new window.
This commit is contained in:
John O'Nolan 2014-08-15 17:15:01 +02:00
commit 1bf6c5791c
4 changed files with 6 additions and 6 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}}

View File

@ -29,7 +29,7 @@ adminControllers = {
dismissible: false,
status: 'persistent',
message: '<a href="https://ghost.org/download">Ghost ' + updateVersion +
'</a> is available! Hot Damn. Please <a href="http://support.ghost.org/how-to-upgrade/">upgrade</a> now'
'</a> is available! Hot Damn. Please <a href="http://support.ghost.org/how-to-upgrade/" target="_blank">upgrade</a> now'
};
return api.notifications.browse({context: {internal: true}}).then(function (results) {

View File

@ -42,7 +42,7 @@ function doFirstRun() {
'Your URL is set to',
'<strong>' + config.url + '</strong>.',
'See <a href="http://support.ghost.org/">http://support.ghost.org</a> for instructions.'
'See <a href="http://support.ghost.org/" target="_blank">http://support.ghost.org</a> for instructions.'
];
return api.notifications.add({ notifications: [{
@ -175,7 +175,7 @@ function initNotifications() {
message: [
"Ghost is attempting to use your server's <b>sendmail</b> to send e-mail.",
"It is recommended that you explicitly configure an e-mail service,",
"See <a href=\"http://support.ghost.org/mail\">http://support.ghost.org/mail</a> for instructions"
"See <a href=\"http://support.ghost.org/mail\" target=\"_blank\">http://support.ghost.org/mail</a> for instructions"
].join(' ')
}] }, {context: {internal: true}});
}
@ -184,7 +184,7 @@ function initNotifications() {
type: 'warn',
message: [
"Ghost is currently unable to send e-mail.",
"See <a href=\"http://support.ghost.org/mail\">http://support.ghost.org/mail</a> for instructions"
"See <a href=\"http://support.ghost.org/mail\" target=\"_blank\">http://support.ghost.org/mail</a> for instructions"
].join(' ')
}] }, {context: {internal: true}});
}