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