sorich87 / bootstrap-tour

Quick and easy product tours with Twitter Bootstrap Popovers
http://bootstraptour.com
MIT License
4.44k stars 941 forks source link

How to Remove a Step Or Clear All Steps? #696

Open wuyou201400 opened 6 years ago

wuyou201400 commented 6 years ago

I wanna remove some steps or clear all steps.thanks

aslamkhan669 commented 6 years ago

There is no method in library for it however you can use this one Tour.prototype.deleteSteps = function() { this._current = 0; this._removeState('current_step'); this._removeState('end'); this._removeState('redirect_to'); this._options.steps.length = 0; return this; }; This will remove all elements.

gaganhn commented 5 years ago

Thanks @aslamkhan669 I wanted to do the same.