(e)
| 1650 | on(d.input, "blur", bind(onBlur, cm)); |
| 1651 | |
| 1652 | function drag_(e) { |
| 1653 | if (signalDOMEvent(cm, e) || cm.options.onDragEvent && cm.options.onDragEvent(cm, addStop(e))) return; |
| 1654 | e_stop(e); |
| 1655 | } |
| 1656 | if (cm.options.dragDrop) { |
| 1657 | on(d.scroller, "dragstart", function(e){onDragStart(cm, e);}); |
| 1658 | on(d.scroller, "dragenter", drag_); |
nothing calls this directly
no test coverage detected