* Checks whether the user's pointer is positioned over the container. * @param x Pointer position along the X axis. * @param y Pointer position along the Y axis.
(x: number, y: number)
| 674 | * @param y Pointer position along the Y axis. |
| 675 | */ |
| 676 | _isOverContainer(x: number, y: number): boolean { |
| 677 | return this._domRect != null && isInsideClientRect(this._domRect, x, y); |
| 678 | } |
| 679 | |
| 680 | /** |
| 681 | * Figures out whether an item should be moved into a sibling |
no test coverage detected