diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-06-29 09:14:16 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-06-29 09:14:16 -0400 |
commit | b2c6bf39771f288fac10224c0e1c9dcbf4290730 (patch) | |
tree | 87ccfa225035fc3103cee91e17ba63c3eb0b8cd7 /src/client/views/nodes/DocumentView.tsx | |
parent | 824066f6c6842d31c41b4686a6e1a9baae61c492 (diff) | |
parent | 5cfd32830586a3e1162ee81538e13d675edb79a7 (diff) |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index ada28d57b..525ca52a6 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -406,8 +406,8 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu doc.nativeWidth = doc.nativeHeight = undefined; } } - fullScreenClicked = (): void => { - CollectionDockingView.Instance && CollectionDockingView.Instance.OpenFullScreen(Doc.MakeAlias(this.props.Document), this.dataDoc); + public fullScreenClicked = (): void => { + CollectionDockingView.Instance && CollectionDockingView.Instance.OpenFullScreen(this); SelectionManager.DeselectAll(); } |