diff options
author | monikahedman <monika_hedman@brown.edu> | 2019-08-15 16:14:17 -0400 |
---|---|---|
committer | monikahedman <monika_hedman@brown.edu> | 2019-08-15 16:14:17 -0400 |
commit | 1c1d4d4865b5dd90489cdde4c8f3dfceba60496b (patch) | |
tree | 0e520b2b423c32eb4b5a6233bb98808ec911d20a /src | |
parent | 70a3cc69966c52fb0b84809a942d0e363a315684 (diff) |
done!
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/nodes/WebBox.tsx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/client/views/nodes/WebBox.tsx b/src/client/views/nodes/WebBox.tsx index 9a177ca54..91170e99a 100644 --- a/src/client/views/nodes/WebBox.tsx +++ b/src/client/views/nodes/WebBox.tsx @@ -45,10 +45,7 @@ export class WebBox extends React.Component<FieldViewProps> { @action onURLChange = (e: React.ChangeEvent<HTMLInputElement>) => { - console.log("changing") - console.log(e.target.value) this.url = e.target.value; - console.log(this.url) } @action @@ -93,7 +90,6 @@ export class WebBox extends React.Component<FieldViewProps> { value={this.url} onChange={this.onURLChange} onKeyDown={this.onValueKeyDown} - // onPointerDown={this.openViewSpecs} /> <button className="submitUrl" onClick={this.submitURL}> SUBMIT URL @@ -107,10 +103,6 @@ export class WebBox extends React.Component<FieldViewProps> { @action toggleCollapse = () => { - // this.props.CollectionView.props.Document.chromeStatus = this.props.CollectionView.props.Document.chromeStatus === "enabled" ? "this.collapsed" : "enabled"; - // if (this.props.collapse) { - // this.props.collapse(this.props.CollectionView.props.Document.chromeStatus !== "enabled"); - // } this.collapsed = !this.collapsed; } |