usablica / intro.js

Lightweight, user-friendly onboarding tour library
http://introjs.com
Other
22.8k stars 2.59k forks source link

Is it possible to disable Prev Button during the whole tour ? #740

Closed cammilleLe closed 7 years ago

cammilleLe commented 7 years ago

Hi everyone,

I'm looking for the best way to disable the Prev button.

bozdoz commented 7 years ago

Could do CSS:

.introjs-prevbutton {
  display:none;
}
afshinm commented 7 years ago

There is no option for this purpose. You can use @bozdoz's suggestion though.

cammilleLe commented 7 years ago

Thank you.