Skip to content

Commit e2b5f2b

Browse files
committed
few more tweaks
1 parent 2a9e1bd commit e2b5f2b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

dygraph.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,8 @@ Dygraph.prototype.createDragInterface_ = function() {
803803
var regionWidth = Math.abs(dragEndX - dragStartX);
804804
var regionHeight = Math.abs(dragEndY - dragStartY);
805805

806-
if (regionWidth < 2 && regionHeight < 2 && self.lastx_ != undefined) {
806+
if (regionWidth < 2 && regionHeight < 2 &&
807+
self.lastx_ != undefined && self.lastx_ != -1) {
807808
// TODO(danvk): pass along more info about the points, e.g. 'x'
808809
if (self.attr_('clickCallback') != null) {
809810
self.attr_('clickCallback')(event, self.lastx_, self.selPoints_);

push-to-web.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ site=$1
88
./generate-combined.sh
99

1010
# Copy everything to the site.
11-
scp tests/*.html tests/*.js tests/*.html $site/tests/ \
11+
scp tests/*.html tests/*.js tests/*.png $site/tests/ \
1212
&& \
1313
scp dygraph*.js gadget.xml excanvas.js thumbnail.png docs/* $site/
1414

0 commit comments

Comments
 (0)