在我将Google Chrome更新到最新版本(v29.0.1547.57 m)后,Sencha Touch应用程序的某些部分会自动旋转.我正在使用Sencha Touch v2.2.1.
例如Ext.Msg.Alert,我得到标题但没有消息.
Ext.Msg.alert(‘Refreshing Session’,’test’,null);
另外我在Ext.navigation.View中的所有按钮都在左侧,即使我明确指出对齐:’右’
Ext.navigation.View的标题也是空的,即使我设置它.
最佳答案
我也遇到过问题,这个来自sencha论坛的快速解决方案为我解决了这个问题:
http://www.sencha.com/forum/showthread.php?269123-2.2.1-default-app.css-amp-chromium-blink-problem&p=987612&viewfull=1#post987612>
http://www.sencha.com/forum/showthread.php?269123-2.2.1-default-app.css-amp-chromium-blink-problem&p=987612&viewfull=1#post987612>
替换mixin st-Box并重新编译css
@mixin st-Box($important: no) {
@if $important == important {
display: flex !important;
display: -webkit-Box !important;
display: -ms-flexBox !important;
} @else {
display: flex;
display: -webkit-Box;
display: -ms-flexBox;
}
}