resume

возобновляет показ начиная с указанной подсказки

void resume( [number stepNumber] );
stepNumbernumber(необязательный параметр) номер подсказки

Example

webix.ui({
    view: "hint",
    id: "hint",
    on: {
        onEnd: function(step) {
            $$("hint").resume(); // начнет показ с первой подсказки
        }
    },
    steps:[
        {
            el: ".div1",
            title: "Welcome to Booking App!",
            text: "Click here to check out regular flights",
            event:"click"
        },
        {
            el: ".div2",
            title: "Get Flights Info in a Click!",
            text: "Click here to take a look at all flights info",
            event:"click"
        }    
    ]
});

Details

При вызове без параметра показ начнется с первой подсказки.

See also
  • Articles
  • Наверх