typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
16 lines (14 loc) • 385 B
text/typescript
/// <reference path="../jquery/jquery.d.ts" />
/// <reference path="jquery.joyride.d.ts" />
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);
});