From a4cc7f7ae13912bd1d7078ccde59c9789766ca9f Mon Sep 17 00:00:00 2001 From: hiepxanh Date: Sun, 3 Jun 2018 20:42:17 +0700 Subject: [PATCH] fix(themeable-browser): allow hidden and clear cache it wrong from boolean to string, after 1 year i update it --- src/@ionic-native/plugins/themeable-browser/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/@ionic-native/plugins/themeable-browser/index.ts b/src/@ionic-native/plugins/themeable-browser/index.ts index 76e4a73b7..885363d40 100644 --- a/src/@ionic-native/plugins/themeable-browser/index.ts +++ b/src/@ionic-native/plugins/themeable-browser/index.ts @@ -48,9 +48,9 @@ export interface ThemeableBrowserOptions { // inAppBrowser options location?: string; - hidden?: string; - clearcache?: string; - clearsessioncache?: string; + hidden?: boolean; + clearcache?: boolean; + clearsessioncache?: boolean; zoom?: string; hardwareback?: string; mediaPlaybackRequiresUserAction?: string;