()
| 696 | } |
| 697 | |
| 698 | override _onPointerUp(): void { |
| 699 | super._onPointerUp(); |
| 700 | if (this._sibling) { |
| 701 | setTimeout(() => { |
| 702 | this._sibling!._updateWidthInactive(); |
| 703 | this._sibling!._hostElement.classList.remove('mat-mdc-slider-input-no-pointer-events'); |
| 704 | }); |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | override _onPointerMove(event: PointerEvent): void { |
| 709 | super._onPointerMove(event); |
nothing calls this directly
no test coverage detected