diff options
author | tschicke-brown <tyler_schicke@brown.edu> | 2019-03-02 23:03:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-02 23:03:24 -0500 |
commit | f1be2fc29ea59c05a3ece851df3ed72adb07a0c2 (patch) | |
tree | 705f4e7ba6e8e6301aded2f7e8c6d4c0cc42295c /src/client/views/collections/CollectionDockingView.tsx | |
parent | 979da9061b6e6cab1f82a316387cb2db1c1eaefb (diff) | |
parent | e7955efcfa18c5cb03066217c3e228c2e46786be (diff) |
Merge pull request #17 from browngraphicslab/navigation
Navigation
Diffstat (limited to 'src/client/views/collections/CollectionDockingView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionDockingView.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/client/views/collections/CollectionDockingView.tsx b/src/client/views/collections/CollectionDockingView.tsx index ad7164e33..c51fba908 100644 --- a/src/client/views/collections/CollectionDockingView.tsx +++ b/src/client/views/collections/CollectionDockingView.tsx @@ -1,13 +1,13 @@ import * as GoldenLayout from "golden-layout"; import 'golden-layout/src/css/goldenlayout-base.css'; import 'golden-layout/src/css/goldenlayout-dark-theme.css'; -import { action, computed, observable, reaction } from "mobx"; +import { action, observable, reaction } from "mobx"; import { observer } from "mobx-react"; import * as ReactDOM from 'react-dom'; -import Measure from "react-measure"; import { Document } from "../../../fields/Document"; -import { FieldId, Opt, Field } from "../../../fields/Field"; import { KeyStore } from "../../../fields/KeyStore"; +import Measure from "react-measure"; +import { FieldId, Opt, Field } from "../../../fields/Field"; import { Utils } from "../../../Utils"; import { Server } from "../../Server"; import { undoBatch } from "../../util/UndoManager"; @@ -269,6 +269,7 @@ export class DockedFrameRenderer extends React.Component<DockedFrameProps> { ScreenToLocalTransform={this.ScreenToLocalTransform} isTopMost={true} SelectOnLoad={false} + focus={(doc: Document) => { }} ContainingCollectionView={undefined} /> </div> |