diff options
author | bobzel <zzzman@gmail.com> | 2021-03-03 14:26:11 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-03 14:26:11 -0500 |
commit | d34acff5fcfa5fefa94d9b27af2dde45227d39ab (patch) | |
tree | cc1b2d32163d7d3c591cbaefcb94315cda463e10 /src/client/views/LightboxView.tsx | |
parent | 0fb14423e900f4c808ac2db882f6425ef1acf072 (diff) | |
parent | 0bf64d5c4bfc62203fa0a024f994a32e23b0effd (diff) |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
Diffstat (limited to 'src/client/views/LightboxView.tsx')
-rw-r--r-- | src/client/views/LightboxView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/LightboxView.tsx b/src/client/views/LightboxView.tsx index 3fc72c45c..9b14c180e 100644 --- a/src/client/views/LightboxView.tsx +++ b/src/client/views/LightboxView.tsx @@ -260,7 +260,7 @@ export class LightboxView extends React.Component<LightboxViewProps> { })} <LightboxTourBtn navBtn={this.navBtn} future={this.future} stepInto={this.stepInto} tourMap={this.tourMap} /> <div className="lightboxView-navBtn" title={"toggle fit width"} style={{ position: "absolute", right: 10, top: 10, color: "white" }} - onClick={e => { e.stopPropagation(); LightboxView.LightboxDoc!._fitWidth = !LightboxView.LightboxDoc!._fitWidth }}> + onClick={e => { e.stopPropagation(); LightboxView.LightboxDoc!._fitWidth = !LightboxView.LightboxDoc!._fitWidth; }}> <FontAwesomeIcon icon={"arrows-alt-h"} size="2x" /> </div> </div>; |