mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
16 lines
324 B
TypeScript
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);
|
|
});
|