diff options
author | bob <bcz@cs.brown.edu> | 2019-04-05 09:56:48 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-04-05 09:56:48 -0400 |
commit | 25d56d2f490ca6c8ea685b832332605a7fc6042a (patch) | |
tree | 2b363309a347e8dea50f712ac4569d2d4e9fe531 /src/client/util/DragManager.ts | |
parent | 39ab550efc4eedeb7a9295a68c0d23e54ad086f2 (diff) |
fixed exception w/ brushing. added undo for dragging items into workspace.
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r-- | src/client/util/DragManager.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts index e8f8cce7c..cc47c57e0 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -1,10 +1,10 @@ -import { DocumentDecorations } from "../views/DocumentDecorations"; -import { CollectionDockingView } from "../views/collections/CollectionDockingView"; -import { Document } from "../../fields/Document"; import { action } from "mobx"; +import { Document } from "../../fields/Document"; import { ImageField } from "../../fields/ImageField"; import { KeyStore } from "../../fields/KeyStore"; +import { CollectionDockingView } from "../views/collections/CollectionDockingView"; import { CollectionView } from "../views/collections/CollectionView"; +import { DocumentDecorations } from "../views/DocumentDecorations"; import { DocumentView } from "../views/nodes/DocumentView"; export function setupDrag( |