From aeddf4e3853d3ff7c8b4f706e499c2506be912a6 Mon Sep 17 00:00:00 2001 From: David Schnur Date: Sun, 10 Mar 2013 21:52:38 -0400 Subject: [PATCH] Avoid an unnecessary intermediate variable. --- jquery.flot.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/jquery.flot.js b/jquery.flot.js index 8f6023f..69ac139 100644 --- a/jquery.flot.js +++ b/jquery.flot.js @@ -40,12 +40,12 @@ Licensed under the MIT license. // Add default styles for tick labels and other text - var STYLES = [ - ".flot-tick-label {font-size:smaller;color:#545454;}" - ]; - $(function() { - $("head").prepend(""); + $("head").prepend([ + "" + ].join("")); }); ///////////////////////////////////////////////////////////////////////////