32 lines
728 B
JavaScript
32 lines
728 B
JavaScript
"use strict";
|
|
|
|
// Class definition
|
|
var KTModalOfferADealComplete = function () {
|
|
// Variables
|
|
var startButton;
|
|
var form;
|
|
var stepper;
|
|
|
|
// Private functions
|
|
var handleForm = function() {
|
|
startButton.addEventListener('click', function () {
|
|
stepper.goTo(1);
|
|
});
|
|
}
|
|
|
|
return {
|
|
// Public functions
|
|
init: function () {
|
|
form = KTModalOfferADeal.getForm();
|
|
stepper = KTModalOfferADeal.getStepperObj();
|
|
startButton = KTModalOfferADeal.getStepper().querySelector('[data-kt-element="complete-start"]');
|
|
|
|
handleForm();
|
|
}
|
|
};
|
|
}();
|
|
|
|
// Webpack support
|
|
if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
|
|
window.KTModalOfferADealComplete = module.exports = KTModalOfferADealComplete;
|
|
} |