Authored by 陈轩

fix YH-6215

... ... @@ -200,6 +200,14 @@ var chat = {
}
});
this.$chatWin.on('click', '.link', function(event) {
event.preventDefault();
tip.show('抱歉,暂不支持,长按复制到手机浏览器打开');
return false;
});
this.orderListView
.on('selectOrder.OrderListView', function(event, data) {
... ... @@ -232,6 +240,9 @@ var chat = {
// resizeFooter();
});
window.addEventListener('online', function() {
self.$netTip.toggleClass('hide', true);
self.connect();
... ...