aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/formattedText/FormattedTextBoxComment.tsx
diff options
context:
space:
mode:
authoranika-ahluwalia <anika.ahluwalia@gmail.com>2020-06-30 16:45:23 -0500
committeranika-ahluwalia <anika.ahluwalia@gmail.com>2020-06-30 16:45:23 -0500
commit3cc69c7f5ae7f7a747ab72b522ea81af38dd7f20 (patch)
tree875fe5272c154495d67393ba5d826bbe40624c4b /src/client/views/nodes/formattedText/FormattedTextBoxComment.tsx
parent121b5a40ebbe6ba70ead68a024d70b75b78afa38 (diff)
slight mods to inline links
Diffstat (limited to 'src/client/views/nodes/formattedText/FormattedTextBoxComment.tsx')
-rw-r--r--src/client/views/nodes/formattedText/FormattedTextBoxComment.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/FormattedTextBoxComment.tsx b/src/client/views/nodes/formattedText/FormattedTextBoxComment.tsx
index a4153a40c..8eeeae051 100644
--- a/src/client/views/nodes/formattedText/FormattedTextBoxComment.tsx
+++ b/src/client/views/nodes/formattedText/FormattedTextBoxComment.tsx
@@ -73,6 +73,8 @@ export class FormattedTextBoxComment {
static targetDoc: Doc | undefined;
static _editRef = React.createRef<HTMLDivElement>();
+ static openDoc: any;
+
constructor(view: any) {
if (!FormattedTextBoxComment.tooltip) {
const root = document.getElementById("root");
@@ -99,6 +101,7 @@ export class FormattedTextBoxComment {
if (FormattedTextBoxComment.linkDoc && !keep && textBox) {
if (FormattedTextBoxComment.linkDoc.author) {
if (FormattedTextBoxComment.linkDoc.type !== DocumentType.LINK) {
+ FormattedTextBoxComment.openDoc = textBox.props.addDocTab(FormattedTextBoxComment.linkDoc, e.ctrlKey ? "inTab" : "onRight");
textBox.props.addDocTab(FormattedTextBoxComment.linkDoc, e.ctrlKey ? "inTab" : "onRight");
} else {
DocumentManager.Instance.FollowLink(FormattedTextBoxComment.linkDoc, textBox.props.Document,
@@ -119,6 +122,7 @@ export class FormattedTextBoxComment {
@action
public static deleteLink = (): void => {
+ console.log(FormattedTextBoxComment.linkDoc);
FormattedTextBoxComment.linkDoc ? LinkManager.Instance.deleteLink(FormattedTextBoxComment.linkDoc) : null;
//this.props.showLinks();
LinkDocPreview.LinkInfo = undefined;
@@ -139,7 +143,7 @@ export class FormattedTextBoxComment {
DocumentLinksButton.EditLink = undefined;
LinkDocPreview.LinkInfo = undefined;
FormattedTextBoxComment.targetDoc ? DocumentManager.Instance.FollowLink(FormattedTextBoxComment.linkDoc, FormattedTextBoxComment.targetDoc,
- doc => MainView.addDocTabFunc(doc, "onRight"), false) : null;
+ doc => FormattedTextBoxComment, false) : null;
}
public static Hide() {