()
| 197 | } |
| 198 | |
| 199 | $detachEventHandlers() { |
| 200 | this.$detachSessionsEventHandlers(); |
| 201 | this.clearSelectionMarkers(); |
| 202 | this.editorA.renderer.off("themeChange", this.onChangeTheme); |
| 203 | this.editorB.renderer.off("themeChange", this.onChangeTheme); |
| 204 | this.$detachEditorEventHandlers(this.editorA); |
| 205 | this.$detachEditorEventHandlers(this.editorB); |
| 206 | } |
| 207 | |
| 208 | $detachEditorEventHandlers(editor) { |
| 209 | editor.off("mousewheel", this.onMouseWheel); |
nothing calls this directly
no test coverage detected