コード:
Ext.define("app.view.Login", {
extend:'Ext.Panel',
fullscreen:true,
xtype:'login',
requires:[
'Ext.form.Panel',
'Ext.Button',
'Ext.field.Text',
'Ext.field.Password',
'app.view.Main'
],
config:{
fullscreen:true,
cls:'login',
style:'background-image:url("img/login.png"); background-size:100% auto;',
scrollable:false,
items:[]
}
...
私のapp.jsでは:
launch:function () {
Ext.Viewport.add(Ext.create('App.view.Login'));
}
Chromeブラウザでは正常に動作しますが、iPhoneでは空白のページしか表示されません。誰かがこの問題を引き起こす可能性があることを知っていますか?私は何か間違ったことをしましたか?それともバグですか?