I have a problem with my app in that we are trying to get as much real estate on the screen as possible and therefore trying to hide the address bar when it is not in use.
I can achieve this by setting the autoMaximize value to true. My problem is when I navigate to this page I get an error Timeout waiting for window.innerHeight to change.
When this error is show I have a white page on my phone but if I then press the refresh button it will actually load the page.
I have attempted to use a fullscreen panel as most docs explain but this will not hide the address bar.
This is completely cut down but I am even getting the error with the following code:
Ext.Application({
launch:function(){
Ext.Viewport.add({
xtype:'panel',
fullscreen:true,
html:'dfghdfgsd'
});
},
viewport:{
autoMaximize: true
}
});
I'm not exactly sure how to explain this issue best because I have tried so many different ways to sort it out. Just hoping someone has came across something similar?