porkbuns / shmile

The DIY photobooth, at your service.
75 stars 39 forks source link

Workaround for iOS bug regarding apple-mobile-web-app-status-bar-style #4

Closed fortiko closed 10 years ago

fortiko commented 10 years ago

I detected (and then confirmed, e.g. http://stackoverflow.com/questions/12680909/ipad-web-app-freezes-on-startup) that the current meta tags in views/layout.jade

meta(name='apple-mobile-web-app-status-bar-style', content='black-translucent')

causes the app to "hog" the whole device, you can't quit, you can't multitask, home button stops working, and only a hard reset works (see post above). Changing to this:

meta(name='apple-mobile-web-app-status-bar-style', content='black')

seems to have no visible impact for me, but on the upside the app works as expected.

Or perhaps this is a feature, sort of a "kiosk" mode? ;-)

andrewhao commented 10 years ago

Thanks @fortiko. Should be addressed.