Skip to content

Commit

Permalink
fix(themeable-browser): allow hidden and clear cache
Browse files Browse the repository at this point in the history
it wrong from boolean to string, after 1 year i update it
  • Loading branch information
hiepxanh authored and danielsogl committed Jun 3, 2018
1 parent e6b02b1 commit a4cc7f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/@ionic-native/plugins/themeable-browser/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a4cc7f7

Please sign in to comment.