CB-7486 - Remove StatusBarBackgroundColor intial preference (black background) so background will be initially transparent

This should not be a default ios setting:
<preference name="StatusBarBackgroundColor" value="#000000" />
It makes it impossible to unset the initial background color (for transparent backgrounds).  Instead just have the default as no background color (which will effectively be transparent), and then allow users to override that with a desired color.

Signed-off-by: Shazron Abdullah <shazron@apache.org>
This commit is contained in:
SayreBlades 2014-08-13 11:37:11 -04:00 committed by Shazron Abdullah
parent 03fbd9dedf
commit 61024e50b3

View File

@ -54,7 +54,6 @@
<param name="ios-package" value="CDVStatusBar" onload="true" /> <param name="ios-package" value="CDVStatusBar" onload="true" />
</feature> </feature>
<preference name="StatusBarOverlaysWebView" value="true" /> <preference name="StatusBarOverlaysWebView" value="true" />
<preference name="StatusBarBackgroundColor" value="#000000" />
<preference name="StatusBarStyle" value="lightcontent" /> <preference name="StatusBarStyle" value="lightcontent" />
</config-file> </config-file>