Commit 0f83ac3d authored by David Schnur's avatar David Schnur

Fixed missing semicolons.

parent 866a9fb9
...@@ -410,7 +410,7 @@ Licensed under the MIT license. ...@@ -410,7 +410,7 @@ Licensed under the MIT license.
if (layerCache != null) { if (layerCache != null) {
for (var styleKey in layerCache) { for (var styleKey in layerCache) {
if (hasOwnProperty.call(layerCache, styleKey)) { if (hasOwnProperty.call(layerCache, styleKey)) {
var styleCache = layerCache[styleKey] var styleCache = layerCache[styleKey];
for (var key in styleCache) { for (var key in styleCache) {
if (hasOwnProperty.call(styleCache, key)) { if (hasOwnProperty.call(styleCache, key)) {
styleCache[key].active = false; styleCache[key].active = false;
...@@ -1100,7 +1100,7 @@ Licensed under the MIT license. ...@@ -1100,7 +1100,7 @@ Licensed under the MIT license.
// second pass: find datamax/datamin for auto-scaling // second pass: find datamax/datamin for auto-scaling
for (i = 0; i < series.length; ++i) { for (i = 0; i < series.length; ++i) {
s = series[i]; s = series[i];
points = s.datapoints.points, points = s.datapoints.points;
ps = s.datapoints.pointsize; ps = s.datapoints.pointsize;
format = s.datapoints.format; format = s.datapoints.format;
...@@ -2970,7 +2970,7 @@ Licensed under the MIT license. ...@@ -2970,7 +2970,7 @@ Licensed under the MIT license.
return this.each(function() { return this.each(function() {
$.plot(this, data, options); $.plot(this, data, options);
}); });
} };
// round to nearby lower multiple of base // round to nearby lower multiple of base
function floorInBase(n, base) { function floorInBase(n, base) {
......
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