From e28e5b0f5f4fa82936b1d24310003022ac14a00e Mon Sep 17 00:00:00 2001 From: Xueron Nee Date: Wed, 12 Oct 2016 07:33:35 +0800 Subject: [PATCH] fix(themeablebrowser): add missed options (#680) --- src/plugins/themeable-browser.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/plugins/themeable-browser.ts b/src/plugins/themeable-browser.ts index 852a61c15..e1d659104 100644 --- a/src/plugins/themeable-browser.ts +++ b/src/plugins/themeable-browser.ts @@ -15,12 +15,19 @@ export interface ThemeableBrowserButton { } export interface ThemeableBrowserOptions { - statusbar?: { color: string; }; + statusbar?: { + color: string; + }; toolbar?: { height?: number; color?: string; + image?: string; + }; + title?: { + color?: string; + staticText?: string; + showPageTitle?: boolean; }; - title?: { color: string; }; backButton?: ThemeableBrowserButton; forwardButton?: ThemeableBrowserButton; closeButton?: ThemeableBrowserButton; @@ -37,6 +44,7 @@ export interface ThemeableBrowserOptions { }[]; }; backButtonCanClose?: boolean; + disableAnimation?: boolean; // inAppBrowser options location?: string;