diff options
| author | bob <bcz@cs.brown.edu> | 2020-01-22 15:41:04 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-01-22 15:41:04 -0500 |
| commit | bfebed91e12abca324d7a638adeb1da9755a9057 (patch) | |
| tree | dae9d6b9b29b018f9025901175661141b78d60de /src/client/views/search | |
| parent | 6b1e9b68c3d409df6ea2a8909b99d5d8d75226c5 (diff) | |
basic cleanup for warnings
Diffstat (limited to 'src/client/views/search')
| -rw-r--r-- | src/client/views/search/SearchItem.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/search/SearchItem.tsx b/src/client/views/search/SearchItem.tsx index 88a4d4c50..30fcc7908 100644 --- a/src/client/views/search/SearchItem.tsx +++ b/src/client/views/search/SearchItem.tsx @@ -260,7 +260,6 @@ export class SearchItem extends React.Component<SearchItemProps> { onPointerMoved = (e: PointerEvent) => { if (Math.abs(e.clientX - this._downX) > Utils.DRAG_THRESHOLD || Math.abs(e.clientY - this._downY) > Utils.DRAG_THRESHOLD) { - console.log("DRAGGIGNG"); document.removeEventListener("pointermove", this.onPointerMoved); document.removeEventListener("pointerup", this.onPointerUp); const doc = Doc.IsPrototype(this.props.doc) ? Doc.MakeDelegate(this.props.doc) : this.props.doc; |
