Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/Timmlion/KJ2024 into dev…
Browse files Browse the repository at this point in the history
…elop
  • Loading branch information
amaz-e committed Jan 28, 2024
2 parents 23b3d9b + 4dea0ee commit a1d417a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/static/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@ function addToGameLog(message) {
let li = document.createElement("li");
li.innerHTML = message;
document.querySelector("#gameLog ul").appendChild(li);
let logParent = document.querySelector("#gameLog");
logParent.scrollTop = logParent.scrollHeight;
}

function showLobbyErrorMessage(message) {
Expand Down

0 comments on commit a1d417a

Please sign in to comment.