Moved NavbarOptions next to the other components.

Added methods for table.
This commit is contained in:
unknown
2013-09-05 15:55:45 +02:00
parent 0ee996cb6a
commit aa7e4926dc

View File

@@ -186,6 +186,10 @@ interface ListViewEvents {
create?: JQueryMobileEvent;
}
interface NavbarOptions {
iconpos: string;
}
interface JQueryMobileOptions {
activeBtnClass?: string;
activePageClass?: string;
@@ -282,10 +286,6 @@ interface LoaderOptions {
textonly?: boolean;
}
interface NavbarOptions {
iconpos: string;
}
interface JQueryMobile extends JQueryMobileOptions {
version: string;
@@ -389,6 +389,9 @@ interface JQuery {
listview(events: ListViewEvents): JQuery;
navbar(options?: NavbarOptions): JQuery;
table(): JQuery;
table(command: string): JQuery;
}