Updated jquery.tinyscrollbar definitions to TS 0.9

This commit is contained in:
Christiaan Rakowski 2013-06-19 20:54:52 +02:00
parent 718e500bef
commit 2f11fa0e45

View File

@ -5,12 +5,12 @@
/// <reference path="../jquery/jquery.d.ts" />
module JQueryTinyScrollbar {
declare module JQueryTinyScrollbar {
export interface JQueryTinyScrollbarOptions {
/**
* Enable mobile invert style scrolling. (default: false)
*/
invertscroll?: bool;
invertscroll?: boolean;
/**
* Vertical or horizontal scroller? 'x' or 'y'. (default: 'x')
*/
@ -22,11 +22,11 @@ module JQueryTinyScrollbar {
/**
* Enable or disable the mousewheel. (default: true)
*/
scroll?: bool;
scroll?: boolean;
/**
* Return scrollwheel event to browser if there is no more content. (default: true)
*/
lockscroll?: bool;
lockscroll?: boolean;
/**
* Set the size of the scrollbar to auto or a fixed number. (default: 'auto')
*/