Fixed use of keyword, reported by Booink

git-svn-id: https://flot.googlecode.com/svn/trunk@145 1e0a6537-2640-0410-bfb7-f154510ff394
pull/1/head
olau@iola.dk 17 years ago
parent ab23756fc2
commit 9d98787ae4

@ -300,7 +300,7 @@
// determine the increment
if (s.bars.show) {
s.datapoints.incr = 3;
format.push({ default: 0 });
format.push({ d: 0 });
}
/*
@ -345,7 +345,7 @@
x = y = null; // make sure everything is cleared
for (m = 2; m < incr; ++m)
points[k + m] = p[m] == null ? format[m-2].default : p[m];
points[k + m] = p[m] == null ? format[m-2].d : p[m];
points[k + 1] = y;
points[k] = x;

Loading…
Cancel
Save