Commit 40666e69 by Kim Peace

chat room user list display when not scroll needed

parent 0862a8a3
......@@ -49,6 +49,12 @@ ChatRoom.loadNewMessage = async function () {
});
};
document.addEventListener("readystatechange", () => {
if (document.readyState == "complete") {
$("#chat_room .user_list").removeClass("hide");
}
});
document.addEventListener("DOMContentLoaded", function () {
// 検索イベントバインディング
ChatRoom.bindSearchUI();
......
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