From ef082822f3a9a4ec9768f1965ee54d9d222ceb89 Mon Sep 17 00:00:00 2001 From: "olau@iola.dk" Date: Wed, 5 Dec 2007 09:57:45 +0000 Subject: [PATCH] Fixed silly recently-introduced bug that prevents the shadows from showing up git-svn-id: https://flot.googlecode.com/svn/trunk@15 1e0a6537-2640-0410-bfb7-f154510ff394 --- jquery.flot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery.flot.js b/jquery.flot.js index e9b5cf2..41eb114 100644 --- a/jquery.flot.js +++ b/jquery.flot.js @@ -541,7 +541,7 @@ s.lines = $.extend(true, {}, options.lines, s.lines); s.points = $.extend(true, {}, options.points, s.points); s.bars = $.extend(true, {}, options.bars, s.bars); - if (s.shadowSize != null) + if (s.shadowSize == null) s.shadowSize = options.shadowSize; } }