Checks whether the element is currently being dragged.
()
| 576 | |
| 577 | /** Checks whether the element is currently being dragged. */ |
| 578 | isDragging(): boolean { |
| 579 | return this._hasStartedDragging() && this._dragDropRegistry.isDragging(this); |
| 580 | } |
| 581 | |
| 582 | /** Resets a standalone drag item to its initial position. */ |
| 583 | reset(): void { |
no outgoing calls
no test coverage detected