(e: DragEvent)
| 549 | } |
| 550 | |
| 551 | _onHeaderDrop(e: DragEvent) { |
| 552 | if (e.target === this._getStartOverflowBtnDOM() || e.target === this._getEndOverflowBtnDOM()) { |
| 553 | return; |
| 554 | } |
| 555 | |
| 556 | handleDrop(e, this, (this.dropIndicatorDOM!.targetReference as TabInStrip).realTabReference, this.dropIndicatorDOM!.placement); |
| 557 | this.dropIndicatorDOM!.targetReference = null; |
| 558 | } |
| 559 | |
| 560 | _moveHeaderItem(tab: Tab, e: KeyboardEvent) { |
| 561 | if (!tab.movable || this._dragging) { |
nothing calls this directly
no test coverage detected