I am getting problem on last step, close(skip) icon should be hide on last step.
#Angular13 @introJs
There is not option in introJS to hide Cross icon
CodePudding user response:
You could track your steps in your component and set a property, if the user opened the last step.
Then you could try to use this property to set a style which extends/overrides the default and hide it with
display:none
or similar.