diff options
author | bobzel <zzzman@gmail.com> | 2021-03-06 15:49:22 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-06 15:49:22 -0500 |
commit | ea0ec26d362d6794b9020a60b55cf6c38368aef4 (patch) | |
tree | 8a364e6dc1c1a0c90258526528b0bacc009bb86e /src/client/views/nodes/formattedText/EquationView.tsx | |
parent | b56d4f3c8774e059ed748dd4f831c1c743c7e40a (diff) |
cleaned up a little bit in doc decorations.
Diffstat (limited to 'src/client/views/nodes/formattedText/EquationView.tsx')
-rw-r--r-- | src/client/views/nodes/formattedText/EquationView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/EquationView.tsx b/src/client/views/nodes/formattedText/EquationView.tsx index 15f15a11e..508500ab6 100644 --- a/src/client/views/nodes/formattedText/EquationView.tsx +++ b/src/client/views/nodes/formattedText/EquationView.tsx @@ -29,7 +29,7 @@ export class EquationView { (this as any).dom = this._fieldWrapper; } _editor: EquationEditor | undefined; - setEditor = (editor?: EquationEditor) => { this._editor = editor; } + setEditor = (editor?: EquationEditor) => this._editor = editor; destroy() { ReactDOM.unmountComponentAtNode(this._fieldWrapper); } selectNode() { this._editor?.mathField.focus(); } deselectNode() { } |