(id: string)
| 231 | } |
| 232 | |
| 233 | private onChangedCheckbox(id: string): void { |
| 234 | if (this.updating) { |
| 235 | return; |
| 236 | } |
| 237 | |
| 238 | const el: HTMLInputElement = <HTMLInputElement>document.getElementById(id); |
| 239 | this.vsCodeApi.postMessage({ |
| 240 | command: "change", |
| 241 | key: id, |
| 242 | value: el.checked |
| 243 | }); |
| 244 | } |
| 245 | |
| 246 | private onChanged(id: string): void { |
| 247 | if (this.updating) { |
nothing calls this directly
no test coverage detected