Skip to content

Commit

Permalink
Improved onboarding copy, polling time, form inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnONolan committed Sep 2, 2015
1 parent 5c0fc9a commit fe44cae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions core/client/app/routes/setup/one.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {request as ajax} from 'ic-ajax';

var DownloadCountPoller = Ember.Object.extend({
url: null,
count: 'many, many',
count: '',
runId: null,

init: function () {
Expand All @@ -12,7 +12,7 @@ var DownloadCountPoller = Ember.Object.extend({
},

poll: function () {
var interval = 3000,
var interval = 2000,
runId;

runId = Ember.run.later(this, function () {
Expand All @@ -36,7 +36,7 @@ var DownloadCountPoller = Ember.Object.extend({

self.set('count', count);
}).catch(function () {
self.set('count', 'many, many');
self.set('count', '');
});
}
});
Expand Down
2 changes: 1 addition & 1 deletion core/client/app/styles/patterns/forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ input {
.gh-select,
select {
display: block;
padding: 4px 10px;
padding: 8px 10px;
width: 100%;
border: 1px solid #dfe1e3;
border-radius: var(--border-radius);
Expand Down
2 changes: 1 addition & 1 deletion core/client/app/templates/setup/one.hbs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<header>
<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 we’re making yours.</p>
<p>All over the world, people have started <em>{{model.count}}</em> incredible blogs with Ghost. Today, we’re starting yours.</p>
</header>

<figure class="gh-flow-screenshot">
Expand Down

0 comments on commit fe44cae

Please sign in to comment.