Stores the slider dimensions.
()
| 572 | |
| 573 | /** Stores the slider dimensions. */ |
| 574 | _updateDimensions(): void { |
| 575 | this._cachedWidth = this._elementRef.nativeElement.offsetWidth; |
| 576 | this._cachedLeft = this._elementRef.nativeElement.getBoundingClientRect().left; |
| 577 | } |
| 578 | |
| 579 | /** Sets the styles for the active portion of the track. */ |
| 580 | _setTrackActiveStyles(styles: { |
no test coverage detected