* Destroys Swappable instance.
()
| 80 | * Destroys Swappable instance. |
| 81 | */ |
| 82 | destroy() { |
| 83 | super.destroy(); |
| 84 | |
| 85 | this.off('drag:start', this._onDragStart) |
| 86 | .off('drag:over', this._onDragOver) |
| 87 | .off('drag:stop', this._onDragStop); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Drag start handler |