fires after the user views the last hint
step | number | the number of the step |
$$("hint").attachEvent("onEnd", function(step){
webix.confirm({
title:"The End",
ok:"Yes",
cancel:"No",
text:"Do you want to resume?",
callback:function(result){
if (result)
$$("hint").resume();
}
});
});