(event: PointerEvent)
| 475 | } |
| 476 | |
| 477 | _onPointerMove(event: PointerEvent): void { |
| 478 | // Again, does nothing if a step is defined because |
| 479 | // we want the value to snap to the values on input. |
| 480 | if (!this._slider.step && this._isActive) { |
| 481 | this._updateThumbUIByPointerEvent(event); |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | _onPointerUp(): void { |
| 486 | if (this._isActive) { |
no test coverage detected