diff options
| author | Stanley Yip <stanley_yip@brown.edu> | 2020-01-14 18:35:28 -0500 |
|---|---|---|
| committer | Stanley Yip <stanley_yip@brown.edu> | 2020-01-14 18:35:28 -0500 |
| commit | de0c00ff0bb1f58a0736da24acc984f5a090d009 (patch) | |
| tree | 5ebcb516b6197a44f2bf6b64325583d24c86bd59 /src/pen-gestures | |
| parent | 75d5b58ef99a80ca2b2823a7836b96a2b574f9f5 (diff) | |
ok we now use custom events for touch. im struggling with figuring out how to ignore a hand lol
Diffstat (limited to 'src/pen-gestures')
| -rw-r--r-- | src/pen-gestures/GestureUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pen-gestures/GestureUtils.ts b/src/pen-gestures/GestureUtils.ts index 062604458..4b5ad6684 100644 --- a/src/pen-gestures/GestureUtils.ts +++ b/src/pen-gestures/GestureUtils.ts @@ -31,7 +31,7 @@ export namespace GestureUtils { element.addEventListener("dashOnGesture", handler); return () => { element.removeEventListener("dashOnGesture", handler); - } + }; } export enum Gestures { |
