From 7e692257515a69ce328851c45fddfb21a1457402 Mon Sep 17 00:00:00 2001
From: Adrian Iain Lam <adrianiainlam@users.noreply.github.com>
Date: Tue, 31 Jul 2018 11:59:43 +0800
Subject: [PATCH] Bug fix for dygraph point selection touch event.

---
 src/dygraph-interaction-model.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/dygraph-interaction-model.js b/src/dygraph-interaction-model.js
index 4fd33d9..6557b11 100644
--- a/src/dygraph-interaction-model.js
+++ b/src/dygraph-interaction-model.js
@@ -590,7 +590,7 @@ DygraphInteraction.endTouch = function(event, g, context) {
       if (context.lastTouch !== null){
         // no double-tap, pan or pinch so it's a touchOVER
         event.isTouchOver = true;
-        g.mouseMove(event);
+        g.mouseMove_(event);
       }
 
       context.startTimeForDoubleTapMs = now;
-- 
2.7.4