diff options
| author | bobzel <zzzman@gmail.com> | 2019-04-17 22:39:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-17 22:39:35 -0400 |
| commit | 78c32d3739e6cc7352e2e4fff53d583ca1ab9728 (patch) | |
| tree | 4b29bd0d7f0a374439ee64acf0917065afdbe6b5 /src/client/views | |
| parent | 80a58ec7213d3c7cd1a290a1dd291891e8333803 (diff) | |
| parent | 51601e1768647b99baa9cee3118a831da9bffc61 (diff) | |
Merge pull request #89 from browngraphicslab/richTextEditor
Font Dropdowns Update Now & Bug Fix
Diffstat (limited to 'src/client/views')
| -rw-r--r-- | src/client/views/nodes/ImageBox.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/views/nodes/ImageBox.tsx b/src/client/views/nodes/ImageBox.tsx index 38a588812..ce855384c 100644 --- a/src/client/views/nodes/ImageBox.tsx +++ b/src/client/views/nodes/ImageBox.tsx @@ -38,7 +38,7 @@ export class ImageBox extends React.Component<FieldViewProps> { onLoad = (target: any) => { var h = this._imgRef.current!.naturalHeight; var w = this._imgRef.current!.naturalWidth; - if (this._photoIndex == 0) { + if (this._photoIndex === 0) { this.props.Document.SetNumber(KeyStore.NativeHeight, this.props.Document.GetNumber(KeyStore.NativeWidth, 0) * h / w); this.props.Document.SetNumber(KeyStore.Height, this.props.Document.Width() * h / w); } @@ -56,7 +56,7 @@ export class ImageBox extends React.Component<FieldViewProps> { onDrop = (e: React.DragEvent) => { e.stopPropagation(); e.preventDefault(); - console.log("IMPLEMENT ME PLEASE") + console.log("IMPLEMENT ME PLEASE"); } @@ -151,7 +151,7 @@ export class ImageBox extends React.Component<FieldViewProps> { <div className="imageBox-placer" key={i} > <div className="imageBox-dot" style={{ background: (i == this._photoIndex ? "black" : "gray"), transform: `translate(${i * dist + left}px, 0px)` }} onPointerDown={(e: React.PointerEvent) => { e.stopPropagation(); this.onDotDown(i); }} /> </div> - ) + ); } render() { @@ -163,7 +163,7 @@ export class ImageBox extends React.Component<FieldViewProps> { let nativeWidth = this.props.Document.GetNumber(KeyStore.NativeWidth, 1); return ( <div className="imageBox-cont" onPointerDown={this.onPointerDown} onDrop={this.onDrop} ref={this.createDropTarget} onContextMenu={this.specificContextMenu}> - <img src={paths[Math.min(paths.length, this._photoIndex)]} style={{ objectFit: (this._photoIndex == 0 ? undefined : "contain") }} width={nativeWidth} alt="Image not found" ref={this._imgRef} onLoad={this.onLoad} /> + <img src={paths[Math.min(paths.length, this._photoIndex)]} style={{ objectFit: (this._photoIndex === 0 ? undefined : "contain") }} width={nativeWidth} alt="Image not found" ref={this._imgRef} onLoad={this.onLoad} /> {paths.length > 1 ? this.dots(paths) : (null)} {this.lightbox(paths)} </div>); |
