From 3ca097d85f74f7c126ae73b6c520a4e49f94dc20 Mon Sep 17 00:00:00 2001 From: Kyle Baggott Date: Mon, 1 Feb 2016 21:33:34 +0000 Subject: [PATCH] Renaming the event to touchOVER as it makes more sense --- 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 3347f06..6cc5ed1 100644 --- a/src/dygraph-interaction-model.js +++ b/src/dygraph-interaction-model.js @@ -589,7 +589,7 @@ Dygraph.Interaction.endTouch = function(event, g, context) { if (context.lastTouch !== null){ // no double-tap, pan or pinch so it's a touchOVER - event.isLastTouch = true; + event.isTouchOver = true; g.mouseMove(event); } -- 2.7.4