X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph-interaction-model.js;h=5185b3dc69ae573d65c8e5691cf6b48484da7b39;hb=fefe0bfe5e8e551e1fdb886408a335139a5f8ba3;hp=4d23efff793f36367f7cef290b8703fe1bd04b33;hpb=421f177336b1dbd195952cfee457483ec9f479ba;p=dygraphs.git diff --git a/dygraph-interaction-model.js b/dygraph-interaction-model.js index 4d23eff..5185b3d 100644 --- a/dygraph-interaction-model.js +++ b/dygraph-interaction-model.js @@ -220,6 +220,7 @@ Dygraph.Interaction.endPan = function(event, g, context) { */ Dygraph.Interaction.startZoom = function(event, g, context) { context.isZooming = true; + context.zoomMoved = false; }; /** @@ -236,6 +237,7 @@ Dygraph.Interaction.startZoom = function(event, g, context) { * dragStartX/dragStartY/etc. properties). This function modifies the context. */ Dygraph.Interaction.moveZoom = function(event, g, context) { + context.zoomMoved = true; context.dragEndX = g.dragGetX_(event, context); context.dragEndY = g.dragGetY_(event, context); @@ -335,7 +337,7 @@ Dygraph.Interaction.endZoom = function(event, g, context) { Math.max(context.dragStartY, context.dragEndY)); context.cancelNextDblclick = true; } else { - g.clearZoomRect_(); + if (context.zoomMoved) g.clearZoomRect_(); } context.dragStartX = null; context.dragStartY = null; @@ -374,7 +376,7 @@ Dygraph.Interaction.startTouch = function(event, g, context) { // TODO(danvk): remove dataX: 0.5 * (touches[0].dataX + touches[1].dataX), - dataY: 0.5 * (touches[0].dataY + touches[1].dataY), + dataY: 0.5 * (touches[0].dataY + touches[1].dataY) }; // Make pinches in a 45-degree swath around either axis 1-dimensional zooms. @@ -403,12 +405,12 @@ Dygraph.Interaction.startTouch = function(event, g, context) { * @private */ Dygraph.Interaction.moveTouch = function(event, g, context) { - var touches = []; - for (var i = 0; i < event.touches.length; i++) { + var i, touches = []; + for (i = 0; i < event.touches.length; i++) { var t = event.touches[i]; touches.push({ pageX: t.pageX, - pageY: t.pageY, + pageY: t.pageY }); } var initialTouches = context.initialTouches; @@ -430,7 +432,7 @@ Dygraph.Interaction.moveTouch = function(event, g, context) { // we toss it out for now, but could use it in the future. var swipe = { pageX: c_now.pageX - c_init.pageX, - pageY: c_now.pageY - c_init.pageY, + pageY: c_now.pageY - c_init.pageY }; var dataWidth = context.initialRange.x[1] - context.initialRange.x[0]; var dataHeight = context.initialRange.y[0] - context.initialRange.y[1]; @@ -458,19 +460,19 @@ Dygraph.Interaction.moveTouch = function(event, g, context) { if (context.touchDirections.x) { g.dateWindow_ = [ c_init.dataX - swipe.dataX + (context.initialRange.x[0] - c_init.dataX) / xScale, - c_init.dataX - swipe.dataX + (context.initialRange.x[1] - c_init.dataX) / xScale, + c_init.dataX - swipe.dataX + (context.initialRange.x[1] - c_init.dataX) / xScale ]; } if (context.touchDirections.y) { - for (var i = 0; i < 1 /*g.axes_.length*/; i++) { + for (i = 0; i < 1 /*g.axes_.length*/; i++) { var axis = g.axes_[i]; if (axis.logscale) { // TODO(danvk): implement } else { axis.valueWindow = [ c_init.dataY - swipe.dataY + (context.initialRange.y[0] - c_init.dataY) / yScale, - c_init.dataY - swipe.dataY + (context.initialRange.y[1] - c_init.dataY) / yScale, + c_init.dataY - swipe.dataY + (context.initialRange.y[1] - c_init.dataY) / yScale ]; } }