mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-17 02:53:18 +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)); |