Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ nextButtonText: "Siguiente"
// specify the back button text (if not given it default to "Previous")
backButtonText: "Espalda"

// specify the next button class (if not given it defaults to "btn btn-prev btn-primary btn-lg" which depends on bootstrap)
nextButtonCls: "btn btn-prev btn-primary btn-lg pull-right"
// specify the next button class (if not given it defaults to "btn btn-next btn-primary btn-lg" which depends on bootstrap)
nextButtonCls: "btn btn-next btn-primary btn-lg pull-right"

// specify the back button text (if not given it default to "btn btn-next btn-primary btn-lg")
backButtonCls: "btn btn-next btn-primary btn-lg pull-left"
// specify the back button text (if not given it default to "btn btn-prev btn-primary btn-lg")
backButtonCls: "btn btn-prev btn-primary btn-lg pull-left"

// specify what the next button text should be in the step before the last (This is usually the last "Actionable" step. You can use this option to change the Next button to say Save - if you save the form data collected in previous steps)
nextTextOnFinalActionStep: "Save"
Expand Down
4 changes: 2 additions & 2 deletions dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -467,9 +467,9 @@ StepZilla.defaultProps = {
preventEnterSubmission: false,
startAtStep: 0,
nextButtonText: 'Next',
nextButtonCls: 'btn btn-prev btn-primary btn-lg pull-right',
nextButtonCls: 'btn btn-next btn-primary btn-lg pull-right',
backButtonText: 'Previous',
backButtonCls: 'btn btn-next btn-primary btn-lg pull-left',
backButtonCls: 'btn btn-prev btn-primary btn-lg pull-left',
hocValidationAppliedTo: []
};

Expand Down
126 changes: 84 additions & 42 deletions docs/dist/bundle.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="lib-version">v4.8.0</div>
<div class="lib-version">v4.8.1</div>

<div id="exList">
<div class="title">Other Example Implementations</div>
Expand All @@ -199,7 +199,7 @@
$(() => {
showExample();
})

const showExample = (eg) => {
switch(eg) {
case 'i18n':
Expand Down
4 changes: 2 additions & 2 deletions docs/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -467,9 +467,9 @@ StepZilla.defaultProps = {
preventEnterSubmission: false,
startAtStep: 0,
nextButtonText: 'Next',
nextButtonCls: 'btn btn-prev btn-primary btn-lg pull-right',
nextButtonCls: 'btn btn-next btn-primary btn-lg pull-right',
backButtonText: 'Previous',
backButtonCls: 'btn btn-next btn-primary btn-lg pull-left',
backButtonCls: 'btn btn-prev btn-primary btn-lg pull-left',
hocValidationAppliedTo: []
};

Expand Down
Loading