Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.6.0
-
None
-
None
-
iOS7,8, physical/simulated environment
Description
Calling StatusBar.backgroundColorByName('orange'); does not change status colour to orange but to black.
The reason is in statusbar.js, "orange" property is defined with double # like "##FFA500"
statusbar.js
"orange": "##FFA500",
After taking out one #, status bar colour changed to orange as expected.