diff options
author | bob <bcz@cs.brown.edu> | 2019-02-13 17:02:23 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-02-13 17:02:23 -0500 |
commit | 3f98d6ec6050e7faa15179871f0d9669c1188a78 (patch) | |
tree | b7190408a4b76dbdd1821e7ea2324a33dc219515 /src/client/views/nodes/DocumentView.tsx | |
parent | c1b556748df727e9c4d92db74adddf51adea637e (diff) |
cool, something worked. panes resize properly now.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 55c8121d3..c5270e0cd 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -15,7 +15,6 @@ import "./DocumentView.scss"; import React = require("react"); import { Transform } from "../../util/Transform"; const JsxParser = require('react-jsx-parser').default;//TODO Why does this need to be imported like this? -import { CollectionFreeFormDocumentView } from '../../views/nodes/CollectionFreeFormDocumentView'; export interface DocumentViewProps { DocumentView: Opt<DocumentView> // needed only to set ContainingDocumentView on CollectionViewProps when invoked from JsxParser -- is there a better way? @@ -147,7 +146,6 @@ export class DocumentView extends React.Component<DocumentViewProps> { return { ScreenX: parentX, ScreenY: parentY }; } - render() { let bindings = { ...this.props } as any; for (const key of this.layoutKeys) { |