(cm)
| 4238 | // FOCUS/BLUR EVENTS |
| 4239 | |
| 4240 | function delayBlurEvent(cm) { |
| 4241 | cm.state.delayingBlurEvent = true; |
| 4242 | setTimeout(function() { |
| 4243 | if (cm.state.delayingBlurEvent) { |
| 4244 | cm.state.delayingBlurEvent = false; |
| 4245 | onBlur(cm); |
| 4246 | } |
| 4247 | }, 100); |
| 4248 | } |
| 4249 | |
| 4250 | function onFocus(cm) { |
| 4251 | if (cm.state.delayingBlurEvent) cm.state.delayingBlurEvent = false; |