(cm)
| 3293 | } |
| 3294 | |
| 3295 | function delayBlurEvent(cm) { |
| 3296 | cm.state.delayingBlurEvent = true; |
| 3297 | setTimeout(function () { if (cm.state.delayingBlurEvent) { |
| 3298 | cm.state.delayingBlurEvent = false; |
| 3299 | if (cm.state.focused) { onBlur(cm); } |
| 3300 | } }, 100); |
| 3301 | } |
| 3302 | |
| 3303 | function onFocus(cm, e) { |
| 3304 | if (cm.state.delayingBlurEvent && !cm.state.draggingText) { cm.state.delayingBlurEvent = false; } |
no test coverage detected