diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-25 21:43:21 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-25 21:43:21 -0400 |
| commit | f1ac48c19b4683668b0df91bd4ad68690a069029 (patch) | |
| tree | 317be5ed80ad65fa3486826f94d9e18fd29ee257 /src/client/views/collections/CollectionCarouselView.tsx | |
| parent | 627adb92b604e117694e26af65afdc19920ac509 (diff) | |
added a targetDropAction field to specify the drop action from the target's side
Diffstat (limited to 'src/client/views/collections/CollectionCarouselView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionCarouselView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionCarouselView.tsx b/src/client/views/collections/CollectionCarouselView.tsx index 9e7248db2..2453acddf 100644 --- a/src/client/views/collections/CollectionCarouselView.tsx +++ b/src/client/views/collections/CollectionCarouselView.tsx @@ -27,7 +27,7 @@ export class CollectionCarouselView extends CollectionSubView(CarouselDocument) protected createDashEventsTarget = (ele: HTMLDivElement) => { //used for stacking and masonry view this._dropDisposer?.(); if (ele) { - this._dropDisposer = DragManager.MakeDropTarget(ele, this.onInternalDrop.bind(this)); + this._dropDisposer = DragManager.MakeDropTarget(ele, this.onInternalDrop.bind(this), this.layoutDoc); } } |
