diff options
| author | bob <bcz@cs.brown.edu> | 2019-10-16 12:34:47 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-10-16 12:34:47 -0400 |
| commit | 57ccb3e236a7dad71848a06dad757c5a5a081ce8 (patch) | |
| tree | 30531ed1726a324503c012d8df0177a9cd7bdaf6 /src/client/views/collections/CollectionSubView.tsx | |
| parent | 6d9cad19047b9970a8429771e7c0e03554e63f39 (diff) | |
starting to switch document embedding to alias dragging.
Diffstat (limited to 'src/client/views/collections/CollectionSubView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionSubView.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionSubView.tsx b/src/client/views/collections/CollectionSubView.tsx index 9919a9dc3..077142e88 100644 --- a/src/client/views/collections/CollectionSubView.tsx +++ b/src/client/views/collections/CollectionSubView.tsx @@ -143,6 +143,9 @@ export function CollectionSubView<T>(schemaCtor: (doc: Doc) => T) { e.stopPropagation(); return added; } + else if (de.data instanceof DragManager.EmbedDragData) { + return this.props.addDocument(de.data.embeddedDoc = Doc.MakeAlias(de.data.embeddableSourceDoc)); + } else if (de.data instanceof DragManager.AnnotationDragData) { e.stopPropagation(); return this.props.addDocument(de.data.dropDocument); |
