Home > Software design >  Hide Cross icon (Skip) on last step in Angular13 IntroJs
Hide Cross icon (Skip) on last step in Angular13 IntroJs

Time:01-14

I am getting problem on last step, close(skip) icon should be hide on last step.

#Angular13 @introJs

enter image description here

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.

  • Related