diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-05-16 22:56:19 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-05-16 22:56:19 -0400 |
commit | 6e65b1e32eb972358d9c8dbd7f8d984d3baefc4b (patch) | |
tree | bdabcfc70b90e943e3aaf9ab8b93a916cabd007d /src/client/util/TooltipTextMenu.tsx | |
parent | 0c019112791138304eaaeea768d254981322ec55 (diff) |
fixed links so that you can adjust the pan location of a collection when its a link endoint
Diffstat (limited to 'src/client/util/TooltipTextMenu.tsx')
-rw-r--r-- | src/client/util/TooltipTextMenu.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/util/TooltipTextMenu.tsx b/src/client/util/TooltipTextMenu.tsx index 223921428..4d40d09b2 100644 --- a/src/client/util/TooltipTextMenu.tsx +++ b/src/client/util/TooltipTextMenu.tsx @@ -186,7 +186,6 @@ export class TooltipTextMenu { let node = this.view.state.selection.$from.nodeAfter; let link = node && node.marks.find(m => m.type.name === "link"); if (link) { - console.log("Link to : " + link.attrs.href); let href: string = link.attrs.href; if (href.indexOf(DocServer.prepend("/doc/")) === 0) { let docid = href.replace(DocServer.prepend("/doc/"), ""); |