You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 17, 2022. It is now read-only.
I have created a tour, added step and ids to elements. But a element that is nested in, is an angular component or is from a library that is for angular will not be highlighted.
This is my tour:
this.introJS.setOptions({
tooltipClass: 'customTooltip',
highlightClass: 'customHighlight',
exitOnOverlayClick: false,
disableInteraction: false,
steps: [
{
intro: 'Welcome to the web let me show you around!',
},
{
element: '#step2',
intro: 'Go to Home',
position: 'right'
},
{
element: document.getElementById('step3'),
intro: 'Fill out the form',
position: 'right'
},
{
element: document.querySelector('#step4'),
intro: 'Click Create an account',
position: 'right'
}
]
}).start();