From a5ff0fa6ab98bbf01e7a5a4a49040c89e2bf9bd1 Mon Sep 17 00:00:00 2001 From: Anselm Levskaya Date: Thu, 3 Aug 2017 13:32:23 -0700 Subject: [PATCH] Fix Saturation.vue touch-event handling Saturation.vue was missing handlers for touchstart and touchmove, preventing smooth update with finger dragging on touch devices. --- src/components/common/Saturation.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/common/Saturation.vue b/src/components/common/Saturation.vue index d634b04..a18fc60 100644 --- a/src/components/common/Saturation.vue +++ b/src/components/common/Saturation.vue @@ -2,7 +2,9 @@
+ @mousedown="handleMouseDown" + @touchmove="handleChange" + @touchstart="handleChange">