diff options
| author | bobzel <zzzman@gmail.com> | 2020-09-07 15:27:34 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-09-07 15:27:34 -0400 |
| commit | 157faac6a3c8a7c2347baf78e1796ff0aa3e0312 (patch) | |
| tree | 1a708f8f4cd7d26af7d7434e10cd351716f480f5 /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | |
| parent | ceb892fe906c5936f5b5b4e65ea3a4e1c05aa289 (diff) | |
fixed childLayoutString templates whch broke somewhere along the way.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index 306dfe797..86460eee1 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -1497,11 +1497,9 @@ class CollectionFreeFormViewPannableContents extends React.Component<CollectionF e.stopPropagation(); e.preventDefault(); const corner = e.target as any; - console.log(corner.id); if (corner) this._drag = corner.id; const rect = document.getElementById(this._drag); if (rect) { - console.log(this._drag); setupMoveUpEvents(e.target, e, this.onPointerMove, (e) => { }, (e) => { }); } } @@ -1567,8 +1565,6 @@ class CollectionFreeFormViewPannableContents extends React.Component<CollectionF const vfTop: number = NumCast(activeItem.presPinViewY); const vfWidth: number = 100; const vfHeight: number = 100; - console.log(vfTop + " | " + vfLeft); - console.log(this.props.presPinView); return ( <> {!this.props.presPinView ? (null) : <div id="resizable" className="resizable" onPointerDown={this.onPointerDown} style={{ width: vfWidth, height: vfHeight, top: vfTop, left: vfLeft, position: 'absolute' }}> |
