When I visit http://www.wikpic.com/ on my Android-WebKit-browser the page renders on fullscreen, in other words the navigation bar that shows the URL disappear. How can I do that?
I tried this option but it doesn't work:
Ext.create('MyApp.view.MyList', {fullscreen: true});
This is my app.js code:
Ext.Loader.setConfig({
enabled: true
});
Ext.application({
models: [
'Contacto'
],
stores: [
'Contactos'
],
views: [
'MyList'
],
name: 'MyApp',
launch: function() {
Ext.create('MyApp.view.MyList', {fullscreen: true});
}
});
Thanks!