From 1d4bee99fb57fdb4a7380335d659b2c1ffc68244 Mon Sep 17 00:00:00 2001 From: David Schnur Date: Tue, 28 May 2013 23:00:09 -0400 Subject: [PATCH] Fix incorrect line termination. --- jquery.flot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery.flot.js b/jquery.flot.js index 3d12081..13455bd 100644 --- a/jquery.flot.js +++ b/jquery.flot.js @@ -1350,7 +1350,7 @@ Licensed under the MIT license. ticks = axis.ticks || [], labelWidth = opts.labelWidth || 0, labelHeight = opts.labelHeight || 0, - maxWidth = labelWidth || axis.direction == "x" ? Math.floor(surface.width / (ticks.length || 1)) : null; + maxWidth = labelWidth || axis.direction == "x" ? Math.floor(surface.width / (ticks.length || 1)) : null, legacyStyles = axis.direction + "Axis " + axis.direction + axis.n + "Axis", layer = "flot-" + axis.direction + "-axis flot-" + axis.direction + axis.n + "-axis " + legacyStyles, font = opts.font || "flot-tick-label tickLabel";