0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Improved onboarding copy, polling time, form inputs

This commit is contained in:
John O'Nolan 2015-09-02 12:03:01 +02:00
parent 5c0fc9ad03
commit fe44cae971
3 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@ import {request as ajax} from 'ic-ajax';
var DownloadCountPoller = Ember.Object.extend({ var DownloadCountPoller = Ember.Object.extend({
url: null, url: null,
count: 'many, many', count: '',
runId: null, runId: null,
init: function () { init: function () {
@ -12,7 +12,7 @@ var DownloadCountPoller = Ember.Object.extend({
}, },
poll: function () { poll: function () {
var interval = 3000, var interval = 2000,
runId; runId;
runId = Ember.run.later(this, function () { runId = Ember.run.later(this, function () {
@ -36,7 +36,7 @@ var DownloadCountPoller = Ember.Object.extend({
self.set('count', count); self.set('count', count);
}).catch(function () { }).catch(function () {
self.set('count', 'many, many'); self.set('count', '');
}); });
} }
}); });

View file

@ -109,7 +109,7 @@ input {
.gh-select, .gh-select,
select { select {
display: block; display: block;
padding: 4px 10px; padding: 8px 10px;
width: 100%; width: 100%;
border: 1px solid #dfe1e3; border: 1px solid #dfe1e3;
border-radius: var(--border-radius); border-radius: var(--border-radius);

View file

@ -1,6 +1,6 @@
<header> <header>
<h1>Welcome to <strong>Ghost</strong>!</h1> <h1>Welcome to <strong>Ghost</strong>!</h1>
<p>So far there have been <em>{{model.count}}</em> Ghost blogs made by people all over the world. Today were making yours.</p> <p>All over the world, people have started <em>{{model.count}}</em> incredible blogs with Ghost. Today, were starting yours.</p>
</header> </header>
<figure class="gh-flow-screenshot"> <figure class="gh-flow-screenshot">