Files
Motula-Translate-Backend/public/assets/js/wizard.js
2024-01-21 17:18:37 +01:00

20 lines
381 B
JavaScript

// npm package: jquery-steps
// github link: https://github.com/rstaib/jquery-steps/
$(function() {
'use strict';
$("#wizard").steps({
headerTag: "h2",
bodyTag: "section",
transitionEffect: "slideLeft"
});
$("#wizardVertical").steps({
headerTag: "h2",
bodyTag: "section",
transitionEffect: "slideLeft",
stepsOrientation: 'vertical'
});
});