()
| 473 | }, |
| 474 | |
| 475 | destroyGlobal() { |
| 476 | this._deselectMultiDrag(); |
| 477 | off(document, 'pointerup', this._deselectMultiDrag); |
| 478 | off(document, 'mouseup', this._deselectMultiDrag); |
| 479 | off(document, 'touchend', this._deselectMultiDrag); |
| 480 | |
| 481 | off(document, 'keydown', this._checkKeyDown); |
| 482 | off(document, 'keyup', this._checkKeyUp); |
| 483 | }, |
| 484 | |
| 485 | _deselectMultiDrag(evt) { |
| 486 | if (typeof dragStarted !== "undefined" && dragStarted) return; |
nothing calls this directly
no test coverage detected
searching dependent graphs…