diff options
author | bobzel <zzzman@gmail.com> | 2020-09-29 21:16:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 21:16:41 -0400 |
commit | 0d5bd277b842136a78760c64f0c0265ccfa89b60 (patch) | |
tree | 25c6c06b5b5c933b8690a1df6e53a95b0a7574b0 /src/client/util/DocumentManager.ts | |
parent | 7e5779c7404d92fdd64958d6240a1418a2ee57d7 (diff) | |
parent | 4ad3bc88a4dfc22173b1d625b1f74a715d0b6454 (diff) |
Merge pull request #813 from browngraphicslab/anika_bug_fixes
undo for follow link
Diffstat (limited to 'src/client/util/DocumentManager.ts')
-rw-r--r-- | src/client/util/DocumentManager.ts | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/client/util/DocumentManager.ts b/src/client/util/DocumentManager.ts index 116883fcb..d7ff03344 100644 --- a/src/client/util/DocumentManager.ts +++ b/src/client/util/DocumentManager.ts @@ -1,16 +1,15 @@ -import { action, computed, observable } from 'mobx'; -import { Doc, DocListCastAsync, DocListCast, Opt } from '../../fields/Doc'; +import { action, observable } from 'mobx'; +import { Doc, DocListCast, DocListCastAsync, Opt } from '../../fields/Doc'; import { Id } from '../../fields/FieldSymbols'; import { Cast, NumCast, StrCast } from '../../fields/Types'; +import { returnFalse } from '../../Utils'; +import { DocumentType } from '../documents/DocumentTypes'; import { CollectionDockingView } from '../views/collections/CollectionDockingView'; import { CollectionView } from '../views/collections/CollectionView'; -import { DocumentView, DocFocusFunc } from '../views/nodes/DocumentView'; +import { DocumentView } from '../views/nodes/DocumentView'; import { LinkManager } from './LinkManager'; import { Scripting } from './Scripting'; import { SelectionManager } from './SelectionManager'; -import { DocumentType } from '../documents/DocumentTypes'; -import { TraceMobx } from '../../fields/util'; -import { returnFalse } from '../../Utils'; export type CreateViewFunc = (doc: Doc, followLinkLocation: string, finished?: () => void) => void; |