mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
bug 12767
Hide previous button on first step of instance wizard status 12767: resolved fixed
This commit is contained in:
parent
152e58c444
commit
ea7ea4ce6f
@ -581,6 +581,11 @@
|
||||
$nextButton.addClass('final');
|
||||
}
|
||||
|
||||
// Hide previous button on first step
|
||||
var $previousButton = $wizard.find('.button.previous');
|
||||
if (index == 1) $previousButton.hide();
|
||||
else $previousButton.show();
|
||||
|
||||
// Update progress bar
|
||||
var $targetProgress = $progress.removeClass('active').filter(function() {
|
||||
return $(this).index() <= targetIndex;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user