(input)
| 142 | |
| 143 | // Prevents input from having injected markup |
| 144 | const cleanInput = (input) => { |
| 145 | return $('<div/>').text(input).html(); |
| 146 | } |
| 147 | |
| 148 | // Updates the typing event |
| 149 | const updateTyping = () => { |
no test coverage detected
searching dependent graphs…