diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-05 18:30:46 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-05 18:30:46 -0400 |
commit | 881a522e1562f948202fcdb6a5a87485bf778597 (patch) | |
tree | 9e68afc1e1d6dc562bf4f191e8e6ad0534399904 /src/client/views/nodes/DocumentContentsView.tsx | |
parent | 29640eadc13bf4dc05c128333e0060f58ace37e1 (diff) |
more fixes to NativeWidth/Height & FreezeDimensions props stuff
Diffstat (limited to 'src/client/views/nodes/DocumentContentsView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentContentsView.tsx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/client/views/nodes/DocumentContentsView.tsx b/src/client/views/nodes/DocumentContentsView.tsx index 4b6729fe7..dc71ba280 100644 --- a/src/client/views/nodes/DocumentContentsView.tsx +++ b/src/client/views/nodes/DocumentContentsView.tsx @@ -63,16 +63,6 @@ export class DocumentContentsView extends React.Component<DocumentViewProps & { hideOnLeave?: boolean, makeLink?: () => Opt<Doc>, // function to call when a link is made }> { - constructor(props: any) { - super(props); - console.log("Consructr" + this.props.Document.title); - } - componentWillUpdate() { - console.log("WillUpdate" + this.props.Document.title); - } - componentWillReceiveProps() { - console.log("Receive" + this.props.Document.title); - } @computed get layout(): string { TraceMobx(); if (!this.layoutDoc) return "<p>awaiting layout</p>"; |