Commit 9d98787a authored by olau@iola.dk's avatar olau@iola.dk

Fixed use of keyword, reported by Booink

git-svn-id: https://flot.googlecode.com/svn/trunk@145 1e0a6537-2640-0410-bfb7-f154510ff394
parent ab23756f
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment