When creating an event listener, it only blocks the type of click you've defined it to listen for on that particular step.
If you are looking for a dblClick, it will not block click actions.
It also does not keep a list of all active click event listeners, so if the tour ends in any unnatural way you will likely not be able to click anymore.
Perfect click event listener list
- Blocks all types of clicks
- Executes code on one particular type of click
- Has a global catalogue of event listeners, so all listeners could be removed cleanly and not be forgotten
When creating an event listener, it only blocks the type of click you've defined it to listen for on that particular step.
If you are looking for a dblClick, it will not block click actions.
It also does not keep a list of all active click event listeners, so if the tour ends in any unnatural way you will likely not be able to click anymore.
Perfect click event listener list