@rently-team/shepherd.js
Version:
Guide your users through a tour of your app.
33 lines (29 loc) • 852 B
text/typescript
import type { Tour } from '../tour.ts';
import { isHTMLElement } from './type-check.ts';
/**
* Cleanup the steps and set pointerEvents back to 'auto'
* @param tour The tour object
*/
export function cleanupSteps(tour: Tour) {
if (tour) {
const { steps } = tour;
steps.forEach((step) => {
if (
step.options &&
step.options.canClickTarget === false &&
step.options.attachTo
) {
if (isHTMLElement(step.target)) {
step.target.classList.remove('shepherd-target-click-disabled');
}
if (step._resolvedExtraHighlightElements) {
step._resolvedExtraHighlightElements.forEach((element) => {
if (isHTMLElement(element)) {
element.classList.remove('shepherd-target-click-disabled');
}
});
}
}
});
}
}