diff --git a/jquery.flot.js b/jquery.flot.js index b377809..25b39e4 100644 --- a/jquery.flot.js +++ b/jquery.flot.js @@ -410,7 +410,7 @@ Licensed under the MIT license. if (layerCache != null) { for (var styleKey in layerCache) { if (hasOwnProperty.call(layerCache, styleKey)) { - var styleCache = layerCache[styleKey] + var styleCache = layerCache[styleKey]; for (var key in styleCache) { if (hasOwnProperty.call(styleCache, key)) { styleCache[key].active = false; @@ -1100,7 +1100,7 @@ Licensed under the MIT license. // second pass: find datamax/datamin for auto-scaling for (i = 0; i < series.length; ++i) { s = series[i]; - points = s.datapoints.points, + points = s.datapoints.points; ps = s.datapoints.pointsize; format = s.datapoints.format; @@ -2970,7 +2970,7 @@ Licensed under the MIT license. return this.each(function() { $.plot(this, data, options); }); - } + }; // round to nearby lower multiple of base function floorInBase(n, base) {