Skip to content

Commit

Permalink
fixed bug #14
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Mar 30, 2017
1 parent 668c2eb commit 53632f1
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions src/views/install.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@
<form id="mongoConnection" class="uk-form-stacked uk-clearfix">
<div class="uk-margin-medium-bottom">
<label for="mongo-server">Server</label>
<input id="mongo-server" name="mongo-server" class="md-input" type="text" value="192.168.1.101" />
<input id="mongo-server" name="mongo-server" class="md-input" type="text" value="localhost" />
</div>
<div class="uk-margin-medium-bottom">
<label for="mongo-port">Port</label>
Expand All @@ -285,7 +285,7 @@
</div>
<div class="uk-margin-medium-bottom">
<label for="mongo-password">Password</label>
<input id="mongo-password" name="mongo-password" class="md-input" type="password" value="#TruDesk$" />
<input id="mongo-password" name="mongo-password" class="md-input" type="password" value="#TruDesk1$" />
</div>
<div class="uk-margin-medium-bottom">
<label for="mongo-database">Database</label>
Expand Down Expand Up @@ -469,7 +469,7 @@
$restartSlide.fadeIn(300, function() {
$restartSlide.addClass('activeSlide');
});
})
});
}
}
});
Expand Down Expand Up @@ -602,7 +602,16 @@
text: 'We did it! Everything is all set up!'
});
advanceSlide();
var $savingConfig = $('#savingConfig');
var $restartSlide = $('#restartSlide');
$savingConfig.fadeOut(300, function() {
$savingConfig.addClass('hide');
$restartSlide.css({display: 'none'}).removeClass('hide');
$restartSlide.fadeIn(300, function() {
$restartSlide.addClass('activeSlide');
});
});
},
error: function(response) {
// window.Snackbar.show({
Expand Down

0 comments on commit 53632f1

Please sign in to comment.