(data)
| 104 | |
| 105 | // Removes the visual chat typing message |
| 106 | const removeChatTyping = (data) => { |
| 107 | getTypingMessages(data).fadeOut(function () { |
| 108 | $(this).remove(); |
| 109 | }); |
| 110 | } |
| 111 | |
| 112 | // Adds a message element to the messages and scrolls to the bottom |
| 113 | // el - The element to add as a message |
no test coverage detected