Merge pull request #1740 from JayQuerido/fix-bootstrappaginator

Fixed bootstrap.paginator "itemTexts" option signature
This commit is contained in:
Masahiro Wakame
2014-03-07 20:22:25 +09:00
+2 -1
View File
@@ -14,10 +14,11 @@ interface PaginatorOptions{
totalPages?: number;
pageUrl?: (type, page, current) => string;
shouldShowPage?: boolean;
itemText?: (type, page, current) => any;
itemTexts?: (type:string, page:number, current:number) => string;
tooltipTitles?: (type, page, current) => string;
useBootstrapTooltip?: boolean;
bootstrapTooltipOptions?: {};
bootstrapMajorVersion?: number;
onPageClicked?: (event, originalEvent, type, page) => void;
onPageChanged?: (event, originalEvent, type, page) => void;
}