/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
public
/
node_modules
/
shepherd.js
/
src
/
js
/
utils
/
Upload File
HOME
/** * Cleanup the steps and set pointerEvents back to 'auto' * @param tour The tour object */ export function cleanupSteps(tour) { if (tour) { const { steps } = tour; steps.forEach((step) => { if (step.options && step.options.canClickTarget === false && step.options.attachTo) { if (step.target instanceof HTMLElement) { step.target.classList.remove('shepherd-target-click-disabled'); } } }); } }