Commit 1a22f77a by Kim Peace

Merge branch 'develop' into debug/console_logs

parents aba48fe7 e656af13
......@@ -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 () {
console.log("peacekim:: chat-room DOMContentLoaded");
// 検索イベントバインディング
......
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