Skip to content

Commit

Permalink
Fix building docs
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbieTheWagner committed Apr 3, 2023
1 parent cacae74 commit e24d9ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/tour.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Shepherd = new Evented();
export class Tour extends Evented {
/**
* @param {Object} options The options for the tour
* @param {boolean | (() => boolean) | Promise<boolean> | (() => Promise<boolean>)} options.confirmCancel If true, will issue a `window.confirm` before cancelling.
* @param {boolean | function(): boolean | Promise<boolean> | function(): Promise<boolean>} options.confirmCancel If true, will issue a `window.confirm` before cancelling.
* If it is a function(support Async Function), it will be called and wait for the return value, and will only be cancelled if the value returned is true
* @param {string} options.confirmCancelMessage The message to display in the `window.confirm` dialog
* @param {string} options.classPrefix The prefix to add to the `shepherd-enabled` and `shepherd-target` class names as well as the `data-shepherd-step-id`.
Expand Down

0 comments on commit e24d9ee

Please sign in to comment.