diff options
author | bobzel <zzzman@gmail.com> | 2023-05-21 22:25:28 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-05-21 22:25:28 -0400 |
commit | ad32fce170ffeef8e03c108569113dca9de15d5d (patch) | |
tree | b7c9dda79e8f56d6f2cd106ec2db7197fbac3323 /src/client/documents/Documents.ts | |
parent | 6d38405169b6475ed84baf7de81d01482c3d5fce (diff) |
fixed comparisonBox to create embeddings of documents by fixing targetDropAction to work for non-collections. fixed carouse3D view to have correct screentolocal XFs,
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 966cd6a68..3be476e68 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -1195,12 +1195,14 @@ export namespace Docs { }, ], }; - return DockDocument( + const doc = DockDocument( configs.map(c => c.doc), JSON.stringify(layoutConfig), options, id ); + configs.map(c => (c.doc.embedContainer = doc)); + return doc; } export function DelegateDocument(proto: Doc, options: DocumentOptions = {}) { |