Skip to content

Commit

Permalink
Update GlobalUi.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemaignent authored Sep 17, 2024
1 parent 5eaded0 commit 739d1af
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main/resources/static/js/modules/ui/GlobalUi.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,11 @@ export class GlobalUi {
wizUi.wizardWorkflowStart();
});

$("#start-wizard-button-3").on('click', function(e) {
let wizUi = new WizUi("", $("#wiz-div"), self.csrf, self.maxSize);
wizUi.wizardWorkflowStart();
});

$(".start-form-button").on('click', function() {
let wizUi = new WizUi("", $("#wiz-start-form-div"), self.csrf, self.maxSize);
wizUi.wizardFormStart($(this).attr("data-es-form-id"));
Expand Down Expand Up @@ -604,4 +609,4 @@ export class GlobalUi {
}
});
}
}
}

0 comments on commit 739d1af

Please sign in to comment.