StepOptionsButton
Properties
action()?
optional
action: (this
) =>void
A function executed when the button is clicked on
It is automatically bound to the tour
the step is associated with, so things like this.next
will
work inside the action.
You can use action to skip steps or navigate to specific steps, with something like:
Parameters
• this: Tour
Returns
void
Defined in
step.ts:229
classes?
optional
classes:string
Extra classes to apply to the <a>
Defined in
step.ts:234
disabled?
optional
disabled:boolean
| () =>boolean
Whether the button should be disabled
When the value is true
, or the function returns true
the button will be disabled
Defined in
step.ts:240
label?
optional
label:StringOrStringFunction
The aria-label text of the button
Defined in
step.ts:245
secondary?
optional
secondary:boolean
A boolean, that when true, adds a shepherd-button-secondary
class to the button.
Defined in
step.ts:250
text?
optional
text:StringOrStringFunction
The HTML text of the button
Defined in
step.ts:255