DefinitelyTyped/types/jquery.joyride/jquery.joyride-tests.ts
Leonard Thieu 1c3565933c :(
2017-06-13 13:00:42 -04:00

16 lines
324 B
TypeScript

import $ = require('jquery');
var options: JoyrideOptions;
options.autoStart = true;
options.postStepCallback = (index, tip)=> {
if (index == 2) {
$(this).joyride('set_li', false, 1);
}
};
options.modal = true;
options.expose = true;
$(window).load(()=> {
$('#joyRideTipContent').joyride(options);
});