(cm, e)
| 3941 | } |
| 3942 | |
| 3943 | function onDragOver(cm, e) { |
| 3944 | var pos = posFromMouse(cm, e); |
| 3945 | if (!pos) return; |
| 3946 | var frag = document.createDocumentFragment(); |
| 3947 | drawSelectionCursor(cm, pos, frag); |
| 3948 | if (!cm.display.dragCursor) { |
| 3949 | cm.display.dragCursor = elt("div", null, "CodeMirror-cursors CodeMirror-dragcursors"); |
| 3950 | cm.display.lineSpace.insertBefore(cm.display.dragCursor, cm.display.cursorDiv); |
| 3951 | } |
| 3952 | removeChildrenAndAdd(cm.display.dragCursor, frag); |
| 3953 | } |
| 3954 | |
| 3955 | function clearDragCursor(cm) { |
| 3956 | if (cm.display.dragCursor) { |
no test coverage detected