diff options
author | Lionel Han <47760119+IGoByJoe@users.noreply.github.com> | 2020-06-16 09:50:36 -0700 |
---|---|---|
committer | Lionel Han <47760119+IGoByJoe@users.noreply.github.com> | 2020-06-16 09:50:36 -0700 |
commit | fe2e0bd58ea9558b710d8fb8037ec72065efa882 (patch) | |
tree | 1a621bd93a6298cf71baf52d2900d68d26f26ae6 /src/client/views/nodes/formattedText/FormattedTextBox.tsx | |
parent | 6d68abf588f7b6182a62b74882d1fdc09b2b0230 (diff) | |
parent | 4b1dc65c9e0bb917c1f1f780f8a63fc0c91b4ad6 (diff) |
Merge branch 'mobile_revision_direct' of https://github.com/browngraphicslab/Dash-Web into mobile_revision_direct
Diffstat (limited to 'src/client/views/nodes/formattedText/FormattedTextBox.tsx')
-rw-r--r-- | src/client/views/nodes/formattedText/FormattedTextBox.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/FormattedTextBox.tsx b/src/client/views/nodes/formattedText/FormattedTextBox.tsx index 1db50a5cc..912bafc46 100644 --- a/src/client/views/nodes/formattedText/FormattedTextBox.tsx +++ b/src/client/views/nodes/formattedText/FormattedTextBox.tsx @@ -262,7 +262,8 @@ export class FormattedTextBox extends ViewBoxAnnotatableComponent<(FieldViewProp } public unhighlightSearchTerms = () => { - if (this._editorView && (this._editorView as any).docView) { + if (window.innerWidth < 1000) null; + else if (this._editorView && (this._editorView as any).docView) { const mark = this._editorView.state.schema.mark(this._editorView.state.schema.marks.search_highlight); const activeMark = this._editorView.state.schema.mark(this._editorView.state.schema.marks.search_highlight, { selected: true }); const end = this._editorView.state.doc.nodeSize - 2; |