Skip to content

Commit e28e5b0

Browse files
xueronihadeed
authored andcommitted
fix(themeablebrowser): add missed options (#680)
1 parent bff4862 commit e28e5b0

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/plugins/themeable-browser.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,19 @@ export interface ThemeableBrowserButton {
1515
}
1616

1717
export interface ThemeableBrowserOptions {
18-
statusbar?: { color: string; };
18+
statusbar?: {
19+
color: string;
20+
};
1921
toolbar?: {
2022
height?: number;
2123
color?: string;
24+
image?: string;
25+
};
26+
title?: {
27+
color?: string;
28+
staticText?: string;
29+
showPageTitle?: boolean;
2230
};
23-
title?: { color: string; };
2431
backButton?: ThemeableBrowserButton;
2532
forwardButton?: ThemeableBrowserButton;
2633
closeButton?: ThemeableBrowserButton;
@@ -37,6 +44,7 @@ export interface ThemeableBrowserOptions {
3744
}[];
3845
};
3946
backButtonCanClose?: boolean;
47+
disableAnimation?: boolean;
4048

4149
// inAppBrowser options
4250
location?: string;

0 commit comments

Comments
 (0)