()
| 406 | } |
| 407 | |
| 408 | destroy() { |
| 409 | if (this.longPressTimer) clearTimeout(this.longPressTimer); |
| 410 | this.longPressTimer = null; |
| 411 | |
| 412 | if (this.dragState) { |
| 413 | if (this.dragState.ghost) { |
| 414 | this.dragState.ghost.remove(); |
| 415 | } |
| 416 | if (this.dragState.el) { |
| 417 | this.dragState.el.classList.remove("dragging"); |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | this.cleanupHighlight(); |
| 422 | this.dragState = null; |
| 423 | this.potentialTarget = null; |
| 424 | } |
| 425 | } |
no test coverage detected