diff options
Diffstat (limited to 'src/client/views/nodes/DocumentContentsView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentContentsView.tsx | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentContentsView.tsx b/src/client/views/nodes/DocumentContentsView.tsx index a5e4b1a17..2574b374a 100644 --- a/src/client/views/nodes/DocumentContentsView.tsx +++ b/src/client/views/nodes/DocumentContentsView.tsx @@ -44,7 +44,18 @@ export class DocumentContentsView extends React.Component<DocumentViewProps & { CreateBindings(): JsxBindings { - let { Document, isSelected, select, isTopMost, selectOnLoad } = this.props; + let + { + Document, + isSelected, + select, + isTopMost, + selectOnLoad, + ScreenToLocalTransform, + addDocument, + removeDocument, + parentActive: active + } = this.props; let bindings: JsxBindings = { props: { Document, @@ -52,6 +63,11 @@ export class DocumentContentsView extends React.Component<DocumentViewProps & { select, isTopMost, selectOnLoad, + ScreenToLocalTransform, + active, + addDocument, + removeDocument, + focus, } }; for (const key of this.layoutKeys) { |