Open askaza opened 9 years ago
Hi! I have few questions about steps array.
For example I have list of fields in the form, which are steps of tour. If user filled some field, I would like to remove it from tour. How to do it?
Hi askaza,
Seems like a logical method to have in there so I just added it myself ...
Tour.prototype.removeStep = function (stepIndex) { this._options.steps.splice(stepIndex, 1); };
Does what I need to do.
Hi! I have few questions about steps array.
For example I have list of fields in the form, which are steps of tour. If user filled some field, I would like to remove it from tour. How to do it?