From 4fb87434a0dfd093b41529c9824560995e4b1821 Mon Sep 17 00:00:00 2001 From: Martin Rocek Date: Thu, 25 Jun 2020 18:41:26 +0200 Subject: [PATCH] :pencil2: (Tests): fixed typo in function name --- src/components/overlay.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/overlay.vue b/src/components/overlay.vue index 3f026f0..4b27e05 100644 --- a/src/components/overlay.vue +++ b/src/components/overlay.vue @@ -137,7 +137,7 @@ export default { * Registers the finger position on website so we can later calculate users * swipe direction. */ - touchStart(event) { + touchStart (event) { const { clientX: x, clientY: y } = event.touches[0] this.touchHandling.posX = x this.touchHandling.posY = y