diff options
author | bob <bcz@cs.brown.edu> | 2020-01-06 15:42:16 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2020-01-06 15:42:16 -0500 |
commit | ccd39c9a53ebf9aea84fcdcba6050145add4526f (patch) | |
tree | b25ebd60772b0d8437c4357d3551176323bb212b /src/client/util/RichTextRules.ts | |
parent | d622486b343e69640dd749d124f6c2da9850dc10 (diff) |
made doculinkbox show up at top right of text hyperlink. it's a hack that should be cleaned up if I can figure out how.
Diffstat (limited to 'src/client/util/RichTextRules.ts')
-rw-r--r-- | src/client/util/RichTextRules.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/RichTextRules.ts b/src/client/util/RichTextRules.ts index 5148af889..c980a8003 100644 --- a/src/client/util/RichTextRules.ts +++ b/src/client/util/RichTextRules.ts @@ -85,11 +85,11 @@ export const inpRules = { const value = state.doc.textBetween(start, end); if (value) { DocServer.GetRefField(value).then(docx => { - const target = ((docx instanceof Doc) && docx) || Docs.Create.FreeformDocument([], { title: value, width: 500, height: 500 }, value); + const target = ((docx instanceof Doc) && docx) || Docs.Create.FreeformDocument([], { title: value, width: 500, height: 500, }, value); DocUtils.Publish(target, value, returnFalse, returnFalse); DocUtils.MakeLink({ doc: (schema as any).Document }, { doc: target }, "portal link", ""); }); - const link = state.schema.marks.link.create({ href: Utils.prepend("/doc/" + value), location: "onRight", title: value }); + const link = state.schema.marks.link.create({ href: Utils.prepend("/doc/" + value), location: "onRight", title: value, targetId: value }); return state.tr.addMark(start, end, link); } return state.tr; |