(data)
| 171 | |
| 172 | // Gets the 'X is typing' messages of a user |
| 173 | function getTypingMessages (data) { |
| 174 | return $('.typing.message').filter(function (i) { |
| 175 | return $(this).data('username') === data.username; |
| 176 | }); |
| 177 | } |
| 178 | |
| 179 | // Gets the color of a username through our hash function |
| 180 | function getUsernameColor (username) { |
no test coverage detected