(cm)
| 4633 | } |
| 4634 | |
| 4635 | function delayBlurEvent(cm) { |
| 4636 | cm.state.delayingBlurEvent = true |
| 4637 | setTimeout(function () { |
| 4638 | if (cm.state.delayingBlurEvent) { |
| 4639 | cm.state.delayingBlurEvent = false |
| 4640 | onBlur(cm) |
| 4641 | } |
| 4642 | }, 100) |
| 4643 | } |
| 4644 | |
| 4645 | function onFocus(cm, e) { |
| 4646 | if (cm.state.delayingBlurEvent) { |
no test coverage detected