From 24e59380a8c7af58539663df111fa39381769cb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?iFish=28=E6=9C=A8=E9=B1=BC=29?= Date: Sat, 1 Aug 2015 12:56:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B1=8F=E8=94=BD=E8=BF=9B=E5=85=A5=E5=92=8C?= =?UTF-8?q?=E9=80=80=E5=87=BA=E6=B6=88=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Web12306/js/ui/chat/roomsession.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Web12306/js/ui/chat/roomsession.js b/Web12306/js/ui/chat/roomsession.js index fe6fedd..97ec079 100644 --- a/Web12306/js/ui/chat/roomsession.js +++ b/Web12306/js/ui/chat/roomsession.js @@ -193,7 +193,7 @@ //自己进入 that.appendMessageItem(roomSysMessage({ stateIcon: "fa-info-circle", state: "system", msg: "您已进入房间,当前房间在线 " + room.onlinecount + " 人。" })); } else { - that.appendMessageItem(roomSysMessage({ stateIcon: "fa-info-circle", state: "system", msg: '' + utility.htmlEncode(info[2]) + ' 已进入房间,当前房间在线 ' + room.onlinecount + " 人。" })); + //that.appendMessageItem(roomSysMessage({ stateIcon: "fa-info-circle", state: "system", msg: '' + utility.htmlEncode(info[2]) + ' 已进入房间,当前房间在线 ' + room.onlinecount + " 人。" })); } } else if (msg.sysMsgType === cmds.SYS_USEREXIT) { //用户退出 @@ -205,7 +205,7 @@ //自己进入 that.appendMessageItem(roomSysMessage({ stateIcon: "fa-info-circle", state: "system", msg: "您已离开房间,当前房间在线 " + room.onlinecount + " 人。" })); } else { - that.appendMessageItem(roomSysMessage({ stateIcon: "fa-info-circle", state: "system", msg: '' + utility.htmlEncode(info[2]) + ' 已离开房间,当前房间在线 ' + room.onlinecount + " 人。" })); + //that.appendMessageItem(roomSysMessage({ stateIcon: "fa-info-circle", state: "system", msg: '' + utility.htmlEncode(info[2]) + ' 已离开房间,当前房间在线 ' + room.onlinecount + " 人。" })); } } else if (msg.sysMsgType === cmds.SYS_SENDFAILED) { } else if (msg.sysMsgType === cmds.SYS_OPERATIONBLOCKED) {