5

在我将 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一切正常,并且仍然运行良好。

4

1 回答 1

4

我也遇到了问题,来自 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;
}
}
于 2013-08-23T08:44:08.067 回答