(cm)
| 13341 | } |
| 13342 | |
| 13343 | function onComposition(cm) { |
| 13344 | setTimeout(function () { |
| 13345 | var empty = false |
| 13346 | if (cm.lineCount() == 1) { |
| 13347 | var input = cm.getInputField() |
| 13348 | empty = input.nodeName == "TEXTAREA" ? !cm.getLine(0).length : !/[^\u200b]/.test(input.querySelector(".CodeMirror-line").textContent) |
| 13349 | } |
| 13350 | if (empty) setPlaceholder(cm) |
| 13351 | else clearPlaceholder(cm) |
| 13352 | }, 20) |
| 13353 | } |
| 13354 | |
| 13355 | function onBlur(cm) { |
| 13356 | if (isEmpty(cm)) setPlaceholder(cm) |
no test coverage detected