diff options
author | bobzel <zzzman@gmail.com> | 2023-12-12 14:11:49 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-12-12 14:11:49 -0500 |
commit | 77234b8f1dd2cad90cdf94eaefab55de691305c3 (patch) | |
tree | b8ec54fa5401c5cb967f7d1897a87d5700dd5594 /src/client/util/DragManager.ts | |
parent | b769a150c8da505289f045b8b296a759c75e03a8 (diff) |
from last
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r-- | src/client/util/DragManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts index 10ef16265..e96bbcaaf 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -329,7 +329,7 @@ export namespace DragManager { y: snapVal([yFromTop, yFromBottom], e.pageY, SnappingManager.HorizSnapLines), }; } - export let docsBeingDragged: Doc[] = observable([] as Doc[]); + export let docsBeingDragged: Doc[] = observable([]); export let CanEmbed = false; export let DocDragData: DocumentDragData | undefined; export function StartDrag(eles: HTMLElement[], dragData: { [id: string]: any }, downX: number, downY: number, options?: DragOptions, finishDrag?: (dropData: DragCompleteEvent) => void, dragUndoName?: string) { |