diff options
author | bobzel <zzzman@gmail.com> | 2019-02-12 22:18:26 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2019-02-12 22:18:26 -0500 |
commit | b48e9b7850d0d244ce1fe519863b32969ed2c7d2 (patch) | |
tree | 3df02f7c80d6228c25444a5f4fabf71c8d16ac0d /src/client/views/nodes/CollectionFreeFormDocumentView.tsx | |
parent | 9c25c122a0f2728db8c1bd9b622ce924086105f6 (diff) |
minor cleanup
Diffstat (limited to 'src/client/views/nodes/CollectionFreeFormDocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/CollectionFreeFormDocumentView.tsx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx index 7a895dd60..6c9d4e16a 100644 --- a/src/client/views/nodes/CollectionFreeFormDocumentView.tsx +++ b/src/client/views/nodes/CollectionFreeFormDocumentView.tsx @@ -216,7 +216,6 @@ export class CollectionFreeFormDocumentView extends DocumentView { } render() { - var freestyling = this.props.ContainingCollectionView instanceof CollectionFreeFormView; var parentScaling = this.nativeWidth > 0 ? this.width / this.nativeWidth : 1; return ( <div className="node" ref={this._mainCont} @@ -224,11 +223,11 @@ export class CollectionFreeFormDocumentView extends DocumentView { onPointerDown={this.onPointerDown} style={{ transformOrigin: "left top", - transform: freestyling ? this.transform : "", - width: freestyling ? this.width : "100%", - height: freestyling ? this.height : "100%", - position: freestyling ? "absolute" : "relative", - zIndex: freestyling ? this.zIndex : 0, + transform: this.transform, + width: this.width, + height: this.height, + position: "absolute", + zIndex: this.zIndex, }}> <DocumentView {...this.props} ref={this._renderDoc} ParentScaling={parentScaling} GetTransform={this.getTransform} DocumentView={this} /> |