Updates the scale on the active portion of the track.
(source: _MatSliderThumb)
| 812 | |
| 813 | /** Updates the scale on the active portion of the track. */ |
| 814 | _updateTrackUI(source: _MatSliderThumb): void { |
| 815 | if (this._skipUpdate()) { |
| 816 | return; |
| 817 | } |
| 818 | |
| 819 | this._isRange |
| 820 | ? this._updateTrackUIRange(source as _MatSliderRangeThumb) |
| 821 | : this._updateTrackUINonRange(source as _MatSliderThumb); |
| 822 | } |
| 823 | |
| 824 | private _updateTrackUIRange(source: _MatSliderRangeThumb): void { |
| 825 | const sibling = source.getSibling(); |
no test coverage detected