onSkip
fires when the hint is closed
void onSkip(number step){ ... };
Parameters
step | number | the number of the step |
Example
$$("hint").attachEvent("onSkip", function(step){
webix.message("You've closed the guide");
})
Details
There are several ways of closing the Hint window:
- by clicking the cross in the hint corner
- by pressing the Esc button
- when a user clicks the "End tour" button or completes the action of the last step
See also
Back to top