From 42c86d9e6c46c0d438fb125b6183d686eca6b66e Mon Sep 17 00:00:00 2001 From: rolux Date: Sun, 6 Nov 2011 22:08:22 +0000 Subject: [PATCH] fix a resize bug in the info panel --- static/js/pandora/info.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/pandora/info.js b/static/js/pandora/info.js index ac5cee55..017cc3ff 100644 --- a/static/js/pandora/info.js +++ b/static/js/pandora/info.js @@ -277,10 +277,10 @@ pandora.ui.listInfo = function() { that.resizeInfo = function() { var width = that.width(); $icon.css(getIconCSS()); - $title.options({ + $title && $title.options({ width: width }); - $description.options({ + $description && $description.options({ height: width, width: width });