mirror of https://github.com/apache/cloudstack.git
Enable install wizard
This commit is contained in:
parent
dd9aff1bd0
commit
73f95dacda
|
|
@ -2,20 +2,16 @@
|
|||
cloudStack.installWizard = {
|
||||
// Check if install wizard should be invoked
|
||||
check: function(args) {
|
||||
args.response.success({
|
||||
doInstall: false
|
||||
$.ajax({
|
||||
url: createURL('listZones'),
|
||||
dataType: 'json',
|
||||
async: true,
|
||||
success: function(data) {
|
||||
args.response.success({
|
||||
doInstall: !data.listzonesresponse.zone
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
// $.ajax({
|
||||
// url: createURL('listZones'),
|
||||
// dataType: 'json',
|
||||
// async: true,
|
||||
// success: function(data) {
|
||||
// args.response.success({
|
||||
// doInstall: !data.listzonesresponse.zone
|
||||
// });
|
||||
// }
|
||||
// });
|
||||
},
|
||||
|
||||
changeUser: function(args) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue