Add theme assets;
This commit is contained in:
20
public/assets/js/wizard.js
Normal file
20
public/assets/js/wizard.js
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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'
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user