diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-03-27 19:33:56 -0400 | 
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-03-27 19:33:56 -0400 | 
| commit | 4704f088af92a8c04a148861c547afa54a276761 (patch) | |
| tree | 2d3e8a06ea67626daf124408926e4585923ae836 /src/client/views/nodes/LinkBox.tsx | |
| parent | fde267b5f11e7218216bc5a9de41208a0a74fad5 (diff) | |
fixed linking to work with delegates.   fixed full screen option and tab dragging bugs.
Diffstat (limited to 'src/client/views/nodes/LinkBox.tsx')
| -rw-r--r-- | src/client/views/nodes/LinkBox.tsx | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/LinkBox.tsx b/src/client/views/nodes/LinkBox.tsx index 638d3b5a7..457fecee3 100644 --- a/src/client/views/nodes/LinkBox.tsx +++ b/src/client/views/nodes/LinkBox.tsx @@ -41,7 +41,7 @@ export class LinkBox extends React.Component<Props> {          e.stopPropagation();          let docView = DocumentManager.Instance.getDocumentView(this.props.pairedDoc);          if (docView) { -            docView.props.focus(this.props.pairedDoc); +            docView.props.focus(docView.props.Document);          } else {              this.props.pairedDoc.GetAsync(KeyStore.AnnotationOn, (contextDoc: any) => {                  if (!contextDoc) {  | 
