(e)
| 2397 | on(d.input, "blur", bind(onBlur, cm)); |
| 2398 | |
| 2399 | function drag_(e) { |
| 2400 | if (!signalDOMEvent(cm, e)) e_stop(e); |
| 2401 | } |
| 2402 | if (cm.options.dragDrop) { |
| 2403 | on(d.scroller, "dragstart", function(e){onDragStart(cm, e);}); |
| 2404 | on(d.scroller, "dragenter", drag_); |
nothing calls this directly
no test coverage detected