File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -803,7 +803,8 @@ Dygraph.prototype.createDragInterface_ = function() {
803
803
var regionWidth = Math . abs ( dragEndX - dragStartX ) ;
804
804
var regionHeight = Math . abs ( dragEndY - dragStartY ) ;
805
805
806
- if ( regionWidth < 2 && regionHeight < 2 && self . lastx_ != undefined ) {
806
+ if ( regionWidth < 2 && regionHeight < 2 &&
807
+ self . lastx_ != undefined && self . lastx_ != - 1 ) {
807
808
// TODO(danvk): pass along more info about the points, e.g. 'x'
808
809
if ( self . attr_ ( 'clickCallback' ) != null ) {
809
810
self . attr_ ( 'clickCallback' ) ( event , self . lastx_ , self . selPoints_ ) ;
Original file line number Diff line number Diff line change 8
8
./generate-combined.sh
9
9
10
10
# 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/ \
12
12
&& \
13
13
scp dygraph* .js gadget.xml excanvas.js thumbnail.png docs/* $site /
14
14
You can’t perform that action at this time.
0 commit comments