(e)
| 3377 | on(d.wrapper, "scroll", function() { d.wrapper.scrollTop = d.wrapper.scrollLeft = 0; }); |
| 3378 | |
| 3379 | function drag_(e) { |
| 3380 | if (!signalDOMEvent(cm, e)) e_stop(e); |
| 3381 | } |
| 3382 | if (cm.options.dragDrop) { |
| 3383 | on(d.scroller, "dragstart", function(e){onDragStart(cm, e);}); |
| 3384 | on(d.scroller, "dragenter", drag_); |
nothing calls this directly
no test coverage detected