(e: DragEvent)
| 56 | } |
| 57 | |
| 58 | _ondrop(e: DragEvent) { |
| 59 | if (!this._table.dropIndicatorDOM?.targetReference || !this._table.dropIndicatorDOM?.placement) { |
| 60 | return; |
| 61 | } |
| 62 | |
| 63 | handleDrop(e, this._table, this._table.dropIndicatorDOM.targetReference, this._table.dropIndicatorDOM.placement); |
| 64 | this._table.dropIndicatorDOM.targetReference = null; |
| 65 | } |
| 66 | } |
nothing calls this directly
no test coverage detected