mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Update wizard.js
This commit is contained in:
parent
9624d3bb0c
commit
065971381d
1 changed files with 25 additions and 25 deletions
|
@ -173,31 +173,31 @@ function setupWizardSteps() {
|
|||
}
|
||||
|
||||
function promptToCreateDomainID() {
|
||||
setTimeout(function(){
|
||||
createDomainIDPrompt(function(label) {
|
||||
var domainJSON = {
|
||||
"label": label
|
||||
}
|
||||
|
||||
$.post("/api/domains", domainJSON, function(data) {
|
||||
// we successfully created a domain ID, set it on that field
|
||||
var domainID = data.domain.domainId;
|
||||
console.log("Setting domain ID to ", data, domainID);
|
||||
|
||||
var formJSON = {
|
||||
"metaverse": {
|
||||
"id": domainID
|
||||
}
|
||||
}
|
||||
|
||||
// POST the form JSON to the domain-server settings.json endpoint so the settings are saved
|
||||
postSettings(formJSON, goToNextStep);
|
||||
}, 'json').fail(function(){
|
||||
console.log("Failed to create domain ID...");
|
||||
goToNextStep();
|
||||
});
|
||||
});
|
||||
}, 500); // Apparently swal needs time before opening another prompt.
|
||||
setTimeout(function() {
|
||||
createDomainIDPrompt(function(label) {
|
||||
var domainJSON = {
|
||||
"label": label
|
||||
}
|
||||
|
||||
$.post("/api/domains", domainJSON, function(data) {
|
||||
// we successfully created a domain ID, set it on that field
|
||||
var domainID = data.domain.domainId;
|
||||
console.log("Setting domain ID to ", data, domainID);
|
||||
|
||||
var formJSON = {
|
||||
"metaverse": {
|
||||
"id": domainID
|
||||
}
|
||||
}
|
||||
|
||||
// POST the form JSON to the domain-server settings.json endpoint so the settings are saved
|
||||
postSettings(formJSON, goToNextStep);
|
||||
}, 'json').fail(function() {
|
||||
console.log("Failed to create domain ID...");
|
||||
goToNextStep();
|
||||
});
|
||||
});
|
||||
}, 500); // Apparently swal needs time before opening another prompt.
|
||||
}
|
||||
|
||||
function updatePlaceNameLink(address) {
|
||||
|
|
Loading…
Reference in a new issue