aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/ScrollBox.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-01-26 10:38:02 -0500
committerbobzel <zzzman@gmail.com>2024-01-26 10:38:02 -0500
commitcdbe62da5c62f809629f4e8b01524b223f38abd4 (patch)
tree6f696f5975b122a34e8c1547bfea46581a32c88e /src/client/util/ScrollBox.tsx
parentf57f7d217441914ed943cba54c0c5445ba79ffb1 (diff)
cleaning up doubleClick documentview handling. fixed pan mode to drag collections when not active.
Diffstat (limited to 'src/client/util/ScrollBox.tsx')
-rw-r--r--src/client/util/ScrollBox.tsx24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/client/util/ScrollBox.tsx b/src/client/util/ScrollBox.tsx
deleted file mode 100644
index 785526ab3..000000000
--- a/src/client/util/ScrollBox.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import * as React from 'react';
-
-export class ScrollBox extends React.Component<React.PropsWithChildren<{}>> {
- onWheel = (e: React.WheelEvent) => {
- if (e.currentTarget.scrollHeight > e.currentTarget.clientHeight) {
- // If the element has a scroll bar, then we don't want the containing collection to zoom
- e.stopPropagation();
- }
- };
-
- render() {
- return (
- <div
- style={{
- overflow: 'auto',
- width: '100%',
- height: '100%',
- }}
- onWheel={this.onWheel}>
- {this.props.children}
- </div>
- );
- }
-}