Commit 55672bd2 by Jeong Gilmo

- チャット

  最初にチャット接続後、ルームを生成ボタンが表示できないことを修正
parent 9855ece4
......@@ -228,14 +228,17 @@ socket.on('refreshRoomList', function(rooms, activeRoomId = null){
});
}
});
jQuery('.roomListIcon').show()
jQuery('#createChatRoom').show()
// チャットルームリストに追加する
jQuery('#room_list').append(obj);
});
if(rooms.length > 0){
jQuery('.roomListIcon').show()
} else {
jQuery('.roomListIcon').hide()
}
jQuery('#createChatRoom').show()
// Rotate
if(isLandscapeMode()) {
$(".chat_list").removeClass("col-12").addClass("col-6");
......@@ -878,7 +881,7 @@ jQuery('a[data-toggle="pill"]').on('show.bs.tab', function (e) {
dismissLoadingIndicator();
break;
case '#pills-chatlist':
jQuery('.roomListIcon, .titleRoomName, #backButton').show();
jQuery('.titleRoomName, #backButton').show();
jQuery('.chatRoomIcon, #backButton, #userSelectionConfirmBtn, #newRoomName, #userSelectionDeleteBtn').hide();
// set Title
......
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