From 0ee996cb6ad7bca5796579808291b02e5d883bcd Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 5 Sep 2013 15:40:26 +0200 Subject: [PATCH] Small mistake in previous commit. --- jquerymobile/jquerymobile.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jquerymobile/jquerymobile.d.ts b/jquerymobile/jquerymobile.d.ts index 40fec050fa..d1be137a5e 100644 --- a/jquerymobile/jquerymobile.d.ts +++ b/jquerymobile/jquerymobile.d.ts @@ -288,6 +288,8 @@ interface NavbarOptions { interface JQueryMobile extends JQueryMobileOptions { + version: string; + changePage(to: any, options?: ChangePageOptions): void; initializePage(): void; loadPage(url: any, options?: LoadPageOptions): void; @@ -320,7 +322,6 @@ interface JQueryMobile extends JQueryMobileOptions { checkboxradio; selectmenu; listview; - navbar(options?: NavbarOptions); } interface JQuerySupport { @@ -386,6 +387,8 @@ interface JQuery { listview(command: string): JQuery; listview(options: ListViewOptions): JQuery; listview(events: ListViewEvents): JQuery; + + navbar(options?: NavbarOptions): JQuery; }