diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-06-12 03:00:59 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-06-12 03:00:59 -0400 |
commit | a7cb61db19c3e34dcf3c91152c04d4aea2980682 (patch) | |
tree | 06e4ec7c4aaca972984dcd79a317ec8842ff775e /src/client/views/nodes/FormattedTextBox.tsx | |
parent | 366ac7e434be306ffd979d7f22ef50ad77fbc1eb (diff) |
prototyep working version of elision -- however, it doesn't work once the text box is deselected/reloaded. didn't look into why
Diffstat (limited to 'src/client/views/nodes/FormattedTextBox.tsx')
-rw-r--r-- | src/client/views/nodes/FormattedTextBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/FormattedTextBox.tsx b/src/client/views/nodes/FormattedTextBox.tsx index b40c6d580..3ba108a57 100644 --- a/src/client/views/nodes/FormattedTextBox.tsx +++ b/src/client/views/nodes/FormattedTextBox.tsx @@ -191,7 +191,7 @@ export class FormattedTextBox extends DocComponent<(FieldViewProps & FormattedTe dispatchTransaction: this.dispatchTransaction, nodeViews: { image(node, view, getPos) { return new ImageResizeView(node, view, getPos); }, - //star(node, view, getPos) { return new SummarizedView(node); } + star(node, view, getPos) { return new SummarizedView(node, view, getPos); } } }); let text = StrCast(this.props.Document.documentText); |