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();
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 is the html:
This is what the tip looks like:
It's in the centre and doesn't highlight anything