MCPcopy Create free account
hub / github.com/angular/components / _updateValueIndicatorUIs

Method _updateValueIndicatorUIs

src/material/slider/slider.ts:765–775  ·  view source on GitHub ↗

Updates all value indicator UIs in the slider.

()

Source from the content-addressed store, hash-verified

763
764 /** Updates all value indicator UIs in the slider. */
765 private _updateValueIndicatorUIs(): void {
766 const eInput = this._getInput(_MatThumb.END);
767 const sInput = this._getInput(_MatThumb.START);
768
769 if (eInput) {
770 this._updateValueIndicatorUI(eInput);
771 }
772 if (sInput) {
773 this._updateValueIndicatorUI(sInput);
774 }
775 }
776
777 // Update Tick Mark Track Width
778 //

Callers 2

discreteMethod · 0.95
_initUIRangeMethod · 0.95

Calls 2

_getInputMethod · 0.95

Tested by

no test coverage detected