diff options
| author | bobzel <zzzman@gmail.com> | 2020-08-14 17:29:55 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-08-14 17:29:55 -0400 |
| commit | 291d2fb28fa878eff190daf813854d9c0477ccb6 (patch) | |
| tree | b74b0607c32ce638b067ff49dac02a364fd25fd5 /src/client/views/DocumentDecorations.tsx | |
| parent | 36f7b54914b4d5fce98de3a6d83f1b186ebb17d1 (diff) | |
cleaned up invocation of RichTextMenu
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
| -rw-r--r-- | src/client/views/DocumentDecorations.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx index 03746a1d2..3f16dd7e7 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -659,8 +659,8 @@ export class DocumentDecorations extends React.Component<{}, { value: string }> if (bounds.y > bounds.b) { bounds.y = bounds.b - (this._resizeBorderWidth + this._linkBoxHeight + this._titleHeight); } - var offset = 0; - let useRotation = seldoc.rootDoc.type === DocumentType.INK; + let offset = 0; + const useRotation = seldoc.rootDoc.type === DocumentType.INK; return (<div className="documentDecorations" style={{ background: darkScheme }} > <div className="documentDecorations-background" style={{ |
