Updates the UI of slider thumbs when they begin or stop overlapping.
(source: _MatSliderRangeThumb)
| 703 | |
| 704 | /** Updates the UI of slider thumbs when they begin or stop overlapping. */ |
| 705 | private _updateOverlappingThumbUI(source: _MatSliderRangeThumb): void { |
| 706 | if (!this._isRange || this._skipUpdate()) { |
| 707 | return; |
| 708 | } |
| 709 | if (this._thumbsOverlap !== this._areThumbsOverlapping()) { |
| 710 | this._thumbsOverlap = !this._thumbsOverlap; |
| 711 | this._updateOverlappingThumbClassNames(source); |
| 712 | } |
| 713 | } |
| 714 | |
| 715 | // _MatThumb styles update conditions |
| 716 | // |
no test coverage detected