(cm)
| 4215 | // FOCUS/BLUR EVENTS |
| 4216 | |
| 4217 | function delayBlurEvent(cm) { |
| 4218 | cm.state.delayingBlurEvent = true; |
| 4219 | setTimeout(function() { |
| 4220 | if (cm.state.delayingBlurEvent) { |
| 4221 | cm.state.delayingBlurEvent = false; |
| 4222 | onBlur(cm); |
| 4223 | } |
| 4224 | }, 100); |
| 4225 | } |
| 4226 | |
| 4227 | function onFocus(cm) { |
| 4228 | if (cm.state.delayingBlurEvent) cm.state.delayingBlurEvent = false; |