Commit 25e7aa21 by Lee Munkyeong

オフライン時非表示項目追加

parent 9c802a74
......@@ -2197,6 +2197,7 @@ CHAT_UI.refreshForOnline = function() {
$('#roomMenu').show();
$('.attach_file').show();
$('.fa-download').show();
$('.chat_room_footer').show();
if (typeof $('#roomTitle').val() != 'undefined') {
CHAT_SOCKET.connectSocket();
socket.emit('join', CHAT.globalLoginParameter, function() {
......@@ -2213,4 +2214,5 @@ CHAT_UI.refreshForOffline = function() {
$('#roomMenu').hide();
$('.attach_file').hide();
$('.fa-download').hide();
$('.chat_room_footer').hide();
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment