(cm)
| 6594 | } |
| 6595 | |
| 6596 | function clearDragCursor(cm) { |
| 6597 | if (cm.display.dragCursor) { |
| 6598 | cm.display.lineSpace.removeChild(cm.display.dragCursor); |
| 6599 | cm.display.dragCursor = null; |
| 6600 | } |
| 6601 | } |
| 6602 | |
| 6603 | // These must be handled carefully, because naively registering a |
| 6604 | // handler for each editor will cause the editors to never be |
no outgoing calls
no test coverage detected