From a10206c13ae46edfd2f6071c172b94d96ba91c9d Mon Sep 17 00:00:00 2001 From: David Schnur Date: Sat, 1 Dec 2012 07:30:42 -0500 Subject: [PATCH] Added a missing semicolon. --- jquery.flot.fillbetween.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery.flot.fillbetween.js b/jquery.flot.fillbetween.js index 12b68eb..dc35b6a 100644 --- a/jquery.flot.fillbetween.js +++ b/jquery.flot.fillbetween.js @@ -123,7 +123,7 @@ plugin, possibly some code could be shared. if (withlines && i > 0 && points[i - ps] != null) { intery = py + (points[i - ps + 1] - py) * (qx - px) / (points[i - ps] - px); newpoints.push(qx); - newpoints.push(intery) + newpoints.push(intery); for (m = 2; m < ps; ++m) newpoints.push(points[i + m]); bottom = qy;