* Enables a handle, if it has been disabled. * @param handle Handle element to be enabled.
(handle: HTMLElement)
| 646 | * @param handle Handle element to be enabled. |
| 647 | */ |
| 648 | enableHandle(handle: HTMLElement) { |
| 649 | if (this._disabledHandles.has(handle)) { |
| 650 | this._disabledHandles.delete(handle); |
| 651 | toggleNativeDragInteractions(handle, this.disabled); |
| 652 | } |
| 653 | } |
| 654 | |
| 655 | /** Sets the layout direction of the draggable item. */ |
| 656 | withDirection(direction: Direction): this { |
no test coverage detected