wizard bugfixes

This commit is contained in:
NoobishSVK
2024-11-07 17:25:04 +01:00
parent 73e7a7bf19
commit 21484dd6a2
4 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
$(document).ready(function() {
$('.btn-prev').toggle($('.step:visible').index() !== 0);
$('.btn-next').click(() => navigateStep(true));
$('.btn-prev').click(() => navigateStep(false));
$('.btn-prev').click(() => navigateStep(false));
});
function updateProgressBar(currentStep) {