typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
33 lines (30 loc) • 842 B
text/typescript
/// <reference path="../jquery/jquery.d.ts" />
/// <reference path="foundation.d.ts" />
function test_orbit() {
$("#featured").orbit();
$('#featured').orbit({
animation: 'fade',
animationSpeed: 800,
timer: true,
resetTimerOnClick: false,
advanceSpeed: 4000,
pauseOnHover: false,
startClockOnMouseOut: false,
startClockOnMouseOutAfter: 1000,
directionalNav: true,
captions: true,
captionAnimation: 'fade',
captionAnimationSpeed: 800,
bullets: false,
bulletThumbs: false,
bulletThumbLocation: '',
afterSlideChange: function () { },
fluid: true
});
}
function test_fluid() {
$("#myModal").reveal();
}
function test_joyride() {
$("#chooseID").joyride();
}