diff options
| author | bob <bcz@cs.brown.edu> | 2020-01-24 16:34:37 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-01-24 16:34:37 -0500 |
| commit | 34ba9b8c3ce48c51dfb1d330d5285e0eadf92030 (patch) | |
| tree | 953dcc1fb0e81b4197266122a8ce969a7459aa9d /src/client/util/RichTextRules.ts | |
| parent | 557e0fd8c41fbae8ddc0ba34be786c912338db23 (diff) | |
| parent | 416541c18545cabe0c1b25d698770d7a50a9136e (diff) | |
made dataDoc be a data doc, not a layout doc & stopped expanding templates in DocumentContentsView. changed autoHeight to be _autoHeight layout property.
Diffstat (limited to 'src/client/util/RichTextRules.ts')
| -rw-r--r-- | src/client/util/RichTextRules.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/RichTextRules.ts b/src/client/util/RichTextRules.ts index fb22e0d18..02b7502d8 100644 --- a/src/client/util/RichTextRules.ts +++ b/src/client/util/RichTextRules.ts @@ -196,7 +196,7 @@ export const inpRules = { new InputRule( new RegExp(/%#$/), (state, match, start, end) => { - const target = Docs.Create.TextDocument({ _width: 75, _height: 35, backgroundColor: "yellow", annotationOn: FormattedTextBox.FocusedBox!.dataDoc, autoHeight: true, fontSize: 9, title: "inline comment" }); + const target = Docs.Create.TextDocument({ _width: 75, _height: 35, backgroundColor: "yellow", annotationOn: FormattedTextBox.FocusedBox!.dataDoc, _autoHeight: true, fontSize: 9, title: "inline comment" }); const node = (state.doc.resolve(start) as any).nodeAfter; const newNode = schema.nodes.dashComment.create({ docid: target[Id] }); const dashDoc = schema.nodes.dashDoc.create({ width: 75, height: 35, title: "dashDoc", docid: target[Id], float: "right" }); |
