aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/InteractionUtils.tsx
diff options
context:
space:
mode:
authorNaafiyan Ahmed <naafiyan@gmail.com>2022-04-28 16:34:31 -0400
committerNaafiyan Ahmed <naafiyan@gmail.com>2022-04-28 16:34:31 -0400
commit4f6b6306803437851959e9ad214fd61a14207a20 (patch)
tree810d28e07fb85240588c296b08720c339cb14538 /src/client/util/InteractionUtils.tsx
parentab5a0bd7cee9366dabf4ce40bde89b67730da2a5 (diff)
added basic code for subgrouping transcribed text
Diffstat (limited to 'src/client/util/InteractionUtils.tsx')
-rw-r--r--src/client/util/InteractionUtils.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/util/InteractionUtils.tsx b/src/client/util/InteractionUtils.tsx
index 675dff00b..e2c5fab64 100644
--- a/src/client/util/InteractionUtils.tsx
+++ b/src/client/util/InteractionUtils.tsx
@@ -357,6 +357,7 @@ export namespace InteractionUtils {
}
export function IsDragging(oldTouches: Map<number, React.Touch>, newTouches: React.Touch[], leniency: number): boolean {
+ console.log("getting here");
for (const touch of newTouches) {
if (touch) {
const oldTouch = oldTouches.get(touch.identifier);