sencha touch 小米3无法点击问题 修复

修改源码文件夹下event/publisher/Dom.js中的attachListener方法,代码如下

sencha touch 小米3无法点击问题 修复
attachListener: function(eventName, doc) {
        if (!doc) {
            doc = document;
        }

        var defaultView = doc.defaultView;

        if (Ext.os.is.iOS && Ext.os.version.getMajor() < 5) {
            document.addEventListener(eventName, this.onEvent, !this.doesEventBubble(eventName));
        }
        else if (defaultView && defaultView.addEventListener) {
            //这里对米3做了适配
            if(/MI 3 Build/.test(navigator.userAgent)){
                document.addEventListener(eventName, this.onEvent, !this.doesEventBubble(eventName));
            }else{
                doc.defaultView.addEventListener(eventName, this.onEvent, !this.doesEventBubble(eventName));
            }
        }
        else {
            doc.addEventListener(eventName, this.onEvent, !this.doesEventBubble(eventName));
        }
        return this;
    }
sencha touch 小米3无法点击问题 修复

 

 

sencha touch 小米3无法点击问题 修复,布布扣,bubuko.com

sencha touch 小米3无法点击问题 修复

上一篇:fiddler抓包工具的用法以及抓取手机报文定位bug


下一篇:6月10日-IOS应用-日记本