@internal stop any active auto-scroll animation
()
| 482 | |
| 483 | /** @internal stop any active auto-scroll animation */ |
| 484 | public _stopScrolling(): void { |
| 485 | if (this._autoScrollAnimId) { |
| 486 | cancelAnimationFrame(this._autoScrollAnimId); |
| 487 | delete this._autoScrollAnimId; |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | /** @internal TODO: set to public as called by DDDroppable! */ |
| 492 | public ui(): DDUIData { |
no outgoing calls
no test coverage detected