diff --git a/src/js/script.js b/src/js/script.js index 403c1c009..8a92b6707 100644 --- a/src/js/script.js +++ b/src/js/script.js @@ -4640,6 +4640,10 @@ $(document).on("click", "#top .logo", (e) => { changePage("test"); }); +$(document).on("click", "#top .config .text-button", (e) => { + $(e.currentTarget).blur(); +}); + $(document).on("click", "#top .config .wordCount .text-button", (e) => { const wrd = $(e.currentTarget).attr("wordCount"); if (wrd == "custom") { diff --git a/src/js/tribe.js b/src/js/tribe.js index 94050c030..1273a3809 100644 --- a/src/js/tribe.js +++ b/src/js/tribe.js @@ -90,6 +90,9 @@ function mp_refreshUserList() { if (user.isReady) { icons += ''; } + if (user.isTyping) { + icons += ''; + } let pointsString; if (user.points == undefined) { pointsString = ""; @@ -100,7 +103,7 @@ function mp_refreshUserList() {