Nik*_*las 5 javascript css google-chrome sencha-touch sencha-touch-2.2
在我将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都在左侧,即使我明确说过align: 'right'
标题Ext.navigation.View也是空的,即使我设置它.
我的代码中没有更改任何内容.使用旧版本的谷歌浏览器,v28.0.1500.95一切正常,并且仍在使用.
我也遇到了问题,sencha 论坛的快速修复为我解决了这个问题: http://www.sencha.com/forum/showthread.php ?269123-2.2.1-default-app.css-amp-chromium-blink-问题&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;
}
}
Run Code Online (Sandbox Code Playgroud)