* Destroys Droppable instance.
()
| 130 | * Destroys Droppable instance. |
| 131 | */ |
| 132 | destroy() { |
| 133 | super.destroy(); |
| 134 | |
| 135 | this.off('drag:start', this[onDragStart]) |
| 136 | .off('drag:move', this[onDragMove]) |
| 137 | .off('drag:stop', this[onDragStop]); |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Drag start handler |