Skip to content

Commit

Permalink
fix(themeablebrowser): add missed options (#680)
Browse files Browse the repository at this point in the history
  • Loading branch information
xueron authored and ihadeed committed Oct 11, 2016
1 parent bff4862 commit e28e5b0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/plugins/themeable-browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -37,6 +44,7 @@ export interface ThemeableBrowserOptions {
}[];
};
backButtonCanClose?: boolean;
disableAnimation?: boolean;

// inAppBrowser options
location?: string;
Expand Down

0 comments on commit e28e5b0

Please sign in to comment.