diff options
author | bobzel <zzzman@gmail.com> | 2021-03-03 14:25:38 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-03 14:25:38 -0500 |
commit | 0bf64d5c4bfc62203fa0a024f994a32e23b0effd (patch) | |
tree | da465e4c76ca15f40693b02b49e4ef6d20107ab5 /src/client/views/LightboxView.tsx | |
parent | c38c7966539cc97e98dd2f836420ca8863bd35fb (diff) |
trying out a forked branch of equation editor. cleaned up warnings.
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>; |