mirror of https://github.com/docker/docs.git
JSHint.
This commit is contained in:
parent
63148c2d9c
commit
c00fe7b630
|
@ -12,7 +12,6 @@ var steps = [
|
||||||
{
|
{
|
||||||
install: function (callback) {
|
install: function (callback) {
|
||||||
isVirtualBoxInstalled(function (err, virtualBoxInstalled) {
|
isVirtualBoxInstalled(function (err, virtualBoxInstalled) {
|
||||||
var installedYet = false;
|
|
||||||
if (!virtualBoxInstalled) {
|
if (!virtualBoxInstalled) {
|
||||||
setupVirtualBox(function (err) {
|
setupVirtualBox(function (err) {
|
||||||
callback(err);
|
callback(err);
|
||||||
|
@ -77,7 +76,7 @@ var steps = [
|
||||||
pastMessage: 'Started the Kitematic VM',
|
pastMessage: 'Started the Kitematic VM',
|
||||||
message: 'Starting the Kitematic VM',
|
message: 'Starting the Kitematic VM',
|
||||||
subMessage: '(This may take a few minutes)',
|
subMessage: '(This may take a few minutes)',
|
||||||
futureMessage: 'Start the Kitematic VM',
|
futureMessage: 'Start the Kitematic VM'
|
||||||
},
|
},
|
||||||
|
|
||||||
// Set up the default Kitematic images
|
// Set up the default Kitematic images
|
||||||
|
@ -90,7 +89,7 @@ var steps = [
|
||||||
pastMessage: 'Started the Kitematic VM',
|
pastMessage: 'Started the Kitematic VM',
|
||||||
message: 'Setting up the default Kitematic images...',
|
message: 'Setting up the default Kitematic images...',
|
||||||
subMessage: '(This may take a few minutes)',
|
subMessage: '(This may take a few minutes)',
|
||||||
futureMessage: 'Set up the default Kitematic images',
|
futureMessage: 'Set up the default Kitematic images'
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -7,5 +7,5 @@ Meteor.publish('images', function () {
|
||||||
});
|
});
|
||||||
|
|
||||||
Meteor.publish('installs', function () {
|
Meteor.publish('installs', function () {
|
||||||
return Installs.find({}, {sort: {createdAt: -1}});
|
return Installs.find({});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue