mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01: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)); |