Method
updateControlDisabledState
(input: EventTarget | null)
Source from the content-addressed store, hash-verified
| 95 | this.control.setValue((input as HTMLInputElement).value); |
| 96 | } |
| 97 | updateControlDisabledState(input: EventTarget | null): void { |
| 98 | if (!input) { |
| 99 | return; |
| 100 | } |
| 101 | (input as HTMLInputElement).checked ? this.control.disable() : this.control.enable(); |
| 102 | } |
| 103 | openDialog() { |
| 104 | this.dialog.open(SliderDialogDemo, { |
| 105 | data: { |
Callers
nothing calls this directly
Tested by
no test coverage detected