projects
/
dygraphs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e4416fb
)
Remove superfluous console.log
author
Robert Konigsberg
<konigsberg@google.com>
Tue, 25 Jan 2011 17:55:03 +0000
(12:55 -0500)
committer
Robert Konigsberg
<konigsberg@google.com>
Tue, 25 Jan 2011 17:55:03 +0000
(12:55 -0500)
dygraph.js
patch
|
blob
|
blame
|
history
diff --git
a/dygraph.js
b/dygraph.js
index
45ccd7b
..
9826414
100644
(file)
--- a/
dygraph.js
+++ b/
dygraph.js
@@
-965,7
+965,6
@@
Dygraph.movePan = function(event, g, context) {
var axis = g.axes_[i];
var maxValue = axis.draggingValue + y_frac * axis.dragValueRange;
var minValue = maxValue - axis.dragValueRange;
- console.log(axis.draggingValue, axis.dragValueRange, minValue, maxValue, y_frac);
axis.valueWindow = [ minValue, maxValue ];
}
}