diff --git a/files/assets/js/chat.js b/files/assets/js/chat.js index 4972270739..93b9e83391 100644 --- a/files/assets/js/chat.js +++ b/files/assets/js/chat.js @@ -246,19 +246,15 @@ ta.addEventListener("input", function() { socket.on('typing', function (users){ if (users.length==0){ document.getElementById('typing-indicator').innerHTML = ''; - document.getElementById('loading-indicator').classList.add('d-none'); } else if (users.length==1){ document.getElementById('typing-indicator').innerHTML = ''+users[0]+" is typing..."; - document.getElementById('loading-indicator').classList.remove('d-none'); } else if (users.length==2){ document.getElementById('typing-indicator').innerHTML = ''+users[0]+" and "+users[1]+" are typing..."; - document.getElementById('loading-indicator').classList.remove('d-none'); } else { document.getElementById('typing-indicator').innerHTML = ''+users[0]+", "+users[1]+", and "+users[2]+" are typing..."; - document.getElementById('loading-indicator').classList.remove('d-none'); } }) diff --git a/files/templates/util/macros.html b/files/templates/util/macros.html index 43fa71f3da..7f35a11753 100644 --- a/files/templates/util/macros.html +++ b/files/templates/util/macros.html @@ -339,7 +339,6 @@
-
{{emoji_btn('input-text-chat')}}