From 044ee4e5b817c19a8f5f95e36d64875ce371c90c Mon Sep 17 00:00:00 2001 From: "olau@iola.dk" Date: Thu, 7 May 2009 18:25:20 +0000 Subject: [PATCH] Fixed silly bug introduced by earlier fix for bars (spotted by Jeff) git-svn-id: https://flot.googlecode.com/svn/trunk@154 1e0a6537-2640-0410-bfb7-f154510ff394 --- jquery.flot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery.flot.js b/jquery.flot.js index fc49a23..e2fd767 100644 --- a/jquery.flot.js +++ b/jquery.flot.js @@ -418,7 +418,7 @@ p.push(y); for (m = 2; m < incr; ++m) - p[j + m] = points[j + m]; + p.push(points[j + m]); } // possibly split lines