美文网首页
sencha touch在华为手机上MessageBox不能隐藏

sencha touch在华为手机上MessageBox不能隐藏

作者: 徐璟 | 来源:发表于2014-08-07 15:06 被阅读0次

修改文件中onTransitionEnd方法如下:

onTransitionEnd: function (e) {
    var target = e.target,
        id = target.id,
        propertyName = e.browserEvent.propertyName,
        styleDashPrefix = Ext.browser.getStyleDashPrefix();
    if (id && this.runningAnimationsData.hasOwnProperty(id)) {
        if (Ext.feature.has.CssTransformNoPrefix) {
            if (propertyName.indexOf(styleDashPrefix) >= 0) {
                propertyName = propertyName.substring(styleDashPrefix.length);
            }
        }
        this.refreshRunningAnimationsData(Ext.get(target), [propertyName]);
    }
}

文章来源:http://www.cnblogs.com/cjpx00008/p/3535557.html

相关文章

网友评论

      本文标题:sencha touch在华为手机上MessageBox不能隐藏

      本文链接:https://www.haomeiwen.com/subject/lpletttx.html