Updated final install step

This commit is contained in:
Duncan Sommerville 2014-12-15 09:52:10 -05:00
parent 4583be981d
commit 5f315abb79
2 changed files with 26 additions and 8 deletions

View file

@ -9,8 +9,12 @@ function cleanupStep(data, e) {
// If there are no errors, we can continue with
// the installation process
if (data.errors.length == 0) {
// Call nextSlide from the submit button's context
nextSlide.call($(e.target));
if ($(e.target).attr("id") == "finishSettingsForm") {
window.location.replace("/?config");
} else {
// Call nextSlide from the submit button's context
nextSlide.call($(e.target));
}
}
removeOverlay();
}