()
| 215 | } |
| 216 | |
| 217 | private commitIfDirty(): void { |
| 218 | if (!this.dirty) return |
| 219 | this.syncFromDom() |
| 220 | this.dirty = false |
| 221 | commitTable(this.view, this.dom as HTMLElement, this.model) |
| 222 | } |
| 223 | |
| 224 | toDOM(view: EditorView): HTMLElement { |
| 225 | this.view = view |
no test coverage detected