cloudstack/ui/scripts-test/installWizard.js
2011-11-11 10:28:58 -08:00

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));