From: Kyle Baggott Date: Mon, 1 Feb 2016 21:33:34 +0000 (+0000) Subject: Renaming the event to touchOVER as it makes more sense X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=3ca097d85f74f7c126ae73b6c520a4e49f94dc20;p=dygraphs.git Renaming the event to touchOVER as it makes more sense --- 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); }