mirror of
https://github.com/apache/cloudstack
synced 2026-08-16 01:22:20 +00:00
12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
(function($, cloudStack, testData) {
|
|
cloudStack.installWizard = {
|
|
// Check if install wizard should be invoked
|
|
check: function(args) {
|
|
setTimeout(function() {
|
|
args.response.success({
|
|
doInstall: false
|
|
});
|
|
}, 100);
|
|
}
|
|
};
|
|
}(jQuery, cloudStack, testData)); |