-
27 Mar 2012 6:24 AM #1
setting statusBarStyle meta tag
setting statusBarStyle meta tag
shouldn't the lines:
//status bar style
if (Ext.isString(statusBarStyle)) {
addMeta('apple-mobile-web-app-status-bar-style', 'statusBarStyle');
}
be
//status bar style
if (Ext.isString(statusBarStyle)) {
addMeta('apple-mobile-web-app-status-bar-style', statusBarStyle);
}
??
(without the single quotes around statusBarStyle)
The funny thing is that it looks right in the docs: http://docs.sencha.com/touch/2-0/sou...t-method-setup but statusBarStyle is quoted in the source. Am I hallucinating?
-
27 Mar 2012 6:46 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,121
- Vote Rating
- 453
Looks like this is already fixed for the 2.0.1 release, this is what the code looks like now:
Code:if (Ext.isString(statusBarStyle)) { addMeta('apple-mobile-web-app-status-bar-style', statusBarStyle); }Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
27 Mar 2012 6:49 AM #3
great!
Yeah, I forgot to mention I was on 2.0.0 (obviously, since 2.0.1 isn't out yet)...
Looks like we can't reproduce the issue or there's a problem in the test case provided.


Reply With Quote