aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/Touchable.tsx
diff options
context:
space:
mode:
authorStanley Yip <stanley_yip@brown.edu>2020-02-02 19:18:23 -0500
committerStanley Yip <stanley_yip@brown.edu>2020-02-02 19:18:23 -0500
commitdab8f5893ffb8fab05a46695b9d1a690d1171bca (patch)
tree83de29075a0d95191f2e82042ad49f33e70acaaa /src/client/views/Touchable.tsx
parent8775ff05e1cfd8f158fb6f0a973d3ee5b9284005 (diff)
some more stuff
Diffstat (limited to 'src/client/views/Touchable.tsx')
-rw-r--r--src/client/views/Touchable.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/Touchable.tsx b/src/client/views/Touchable.tsx
index 7800c4019..ead6e2a00 100644
--- a/src/client/views/Touchable.tsx
+++ b/src/client/views/Touchable.tsx
@@ -92,7 +92,6 @@ export abstract class Touchable<T = {}> extends React.Component<T> {
if (!InteractionUtils.IsDragging(this.prevPoints, myTouches, 5) && !this._touchDrag) return;
this._touchDrag = true;
if (this.holdTimer) {
- console.log("CLEAR");
clearTimeout(this.holdTimer);
// this.holdTimer = undefined;
}
@@ -129,7 +128,6 @@ export abstract class Touchable<T = {}> extends React.Component<T> {
}
if (this.holdTimer) {
clearTimeout(this.holdTimer);
- console.log("clear");
}
this._touchDrag = false;
te.stopPropagation();