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/TooltipTextMenu.tsx | |
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/TooltipTextMenu.tsx')
-rw-r--r-- | src/client/util/TooltipTextMenu.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/TooltipTextMenu.tsx b/src/client/util/TooltipTextMenu.tsx index fbdb9e377..33257b658 100644 --- a/src/client/util/TooltipTextMenu.tsx +++ b/src/client/util/TooltipTextMenu.tsx @@ -449,8 +449,8 @@ export class TooltipTextMenu { // let link = state.schema.mark(state.schema.marks.link, { href: target, location: location }); // } - makeLink = (targetDoc: Doc, title: string, location: string): string => { - const link = this.view.state.schema.marks.link.create({ href: Utils.prepend("/doc/" + targetDoc[Id]), title: title, location: location }); + makeLink = (linkDocId: string, title: string, location: string, targetDocId: string): string => { + const link = this.view.state.schema.marks.link.create({ href: Utils.prepend("/doc/" + linkDocId), title: title, location: location, targetId: targetDocId }); this.view.dispatch(this.view.state.tr.removeMark(this.view.state.selection.from, this.view.state.selection.to, this.view.state.schema.marks.link). addMark(this.view.state.selection.from, this.view.state.selection.to, link)); const node = this.view.state.selection.$from.nodeAfter; |