wizard-demo.js 606 B

1234567891011121314151617181920212223242526
  1. /* Form wizard */
  2. $(function() {
  3. "use strict";
  4. $('#form-wizard-1').bootstrapWizard({
  5. 'tabClass': 'nav nav-pills'
  6. });
  7. });
  8. $(function() {
  9. "use strict";
  10. $('#form-wizard-2').bootstrapWizard({
  11. 'tabClass': 'list-group list-group-separator row list-group-icons list-group-centered',
  12. 'nextSelector': '.button-next',
  13. 'previousSelector': '.button-previous',
  14. 'firstSelector': '.button-first',
  15. 'lastSelector': '.button-last'
  16. });
  17. });
  18. $(function() {
  19. "use strict";
  20. $('#form-wizard-3').bootstrapWizard({
  21. 'tabClass': ''
  22. });
  23. });