Renaming the event to touchOVER as it makes more sense
authorKyle Baggott <Kyle_Baggott@hotmail.co.uk>
Mon, 1 Feb 2016 21:33:34 +0000 (21:33 +0000)
committerKyle Baggott <Kyle_Baggott@hotmail.co.uk>
Mon, 1 Feb 2016 21:33:34 +0000 (21:33 +0000)
src/dygraph-interaction-model.js

index 3347f06..6cc5ed1 100644 (file)
@@ -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);
       }