Skip to content

Commit 37170d5

Browse files
authored
Merge pull request #56 from ronalson/fix/ios-control-color
Fix wrong param passed to parseColor method
2 parents ca21c29 + 0e5edbc commit 37170d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/InAppBrowser.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function setup() {
105105
}
106106
}
107107
if (inAppBrowserOptions.preferredControlTintColor) {
108-
const color = parseColor(inAppBrowserOptions.preferredBarTintColor);
108+
const color = parseColor(inAppBrowserOptions.preferredControlTintColor);
109109
if (color) {
110110
this.safariVC.preferredControlTintColor = color.ios;
111111
}

0 commit comments

Comments
 (0)