MIF_E31210529/public/vendors/scripts/steps-setting.js

33 lines
865 B
JavaScript

$(".tab-wizard").steps({
headerTag: "h5",
bodyTag: "section",
transitionEffect: "fade",
titleTemplate: '<span class="step">#index#</span> #title#',
labels: {
finish: "Submit"
},
onStepChanged: function (event, currentIndex, priorIndex) {
$('.steps .current').prevAll().addClass('disabled');
},
onFinished: function (event, currentIndex) {
$('#success-modal').modal('show');
}
});
$(".tab-wizard2").steps({
headerTag: "h5",
bodyTag: "section",
transitionEffect: "fade",
titleTemplate: '<span class="step">#index#</span> <span class="info">#title#</span>',
labels: {
finish: "Submit",
next: "Next",
previous: "Previous",
},
onStepChanged: function(event, currentIndex, priorIndex) {
$('.steps .current').prevAll().addClass('disabled');
},
onFinished: function(event, currentIndex) {
$('#success-modal-btn').trigger('click');
}
});