Chrome in iOS (autoMaximize)
REQUIRED INFORMATIONBrowser versions tested against:- Chrome 19.0.1084.60 (iOS)
Description:
The problem happens when i call the function autoMaximize within viewport in app.js file in the Chrome for iOS.
The result that was expected:
Hide Address Bar.
The result that occurs instead:
Application stopped.
Code:
Code:
Ext.application({
...
viewport : {
autoMaximize : true
},
...
};
not working on iphone 3gs with Chrome
Hi
I can confirm the code above DOESNT work on Iphone 3gs (fw 5.0.1) with the Chrome iOS browser.
A clean app, copy and pasted from above, if I set:
Code:
viewport : {
autoMaximize : false
},
it works, but
Code:
viewport : {
autoMaximize : true
},
doesnt work :(
Is this a bug? or there any workarounds, like say detecting the Chrome app and not setting fullscreen or something....?