From aa7e4926dcfdda4f8dfd0bb57f13277939002445 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 5 Sep 2013 15:55:45 +0200 Subject: [PATCH] Moved NavbarOptions next to the other components. Added methods for table. --- jquerymobile/jquerymobile.d.ts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/jquerymobile/jquerymobile.d.ts b/jquerymobile/jquerymobile.d.ts index d1be137a5e..956c7a0401 100644 --- a/jquerymobile/jquerymobile.d.ts +++ b/jquerymobile/jquerymobile.d.ts @@ -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; }