mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 19:59:02 +08:00
13 lines
292 B
TypeScript
13 lines
292 B
TypeScript
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);
|
|
}); |