1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-27 06:23:53 +01:00

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

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