Skip to content

Commit 573b243

Browse files
committed
Minor simplification.
1 parent e2df6df commit 573b243

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

talk/20111116/iris-parallel.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ <h2>
9797
flowers.forEach(function(p) { p[d] = +p[d]; });
9898

9999
y[d] = d3.scale.linear()
100-
.domain(d3.extent(flowers, function(p) { return +p[d]; }))
100+
.domain(d3.extent(flowers, function(p) { return p[d]; }))
101101
.range([h, 0]);
102102

103103
y[d].brush = d3.svg.brush()

0 commit comments

Comments
 (0)