From cb62ff86308af2c6e71342e18c3e3d8ab4ed402a Mon Sep 17 00:00:00 2001 From: rolux Date: Sat, 9 Feb 2013 15:13:55 +0530 Subject: [PATCH] fix pad.ma info page css --- static/js/pandora/infoView.padma.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/static/js/pandora/infoView.padma.js b/static/js/pandora/infoView.padma.js index 92cfcd12..343933f9 100644 --- a/static/js/pandora/infoView.padma.js +++ b/static/js/pandora/infoView.padma.js @@ -260,7 +260,6 @@ pandora.ui.infoView = function(data) { }) .appendTo($div); }); - $('
').appendTo($center); } else { html = []; ['location', 'date', 'language', 'duration'].forEach(function(key) { @@ -300,7 +299,6 @@ pandora.ui.infoView = function(data) { }) .appendTo($div); }); - $('
').appendTo($center); } else if (data.director || data.cinematographer || data.featuring) { html = []; ['director', 'cinematographer', 'featuring'].forEach(function(key) { @@ -341,7 +339,6 @@ pandora.ui.infoView = function(data) { } }) .appendTo($div); - $('
').appendTo($center); } else if (data.topic) { html = formatKey('topics') + formatValue(data.topic, 'topic'); @@ -360,10 +357,10 @@ pandora.ui.infoView = function(data) { placeholder: formatLight('No Summary'), tooltip: canEdit ? 'Doubleclick to edit' : '', type: 'textarea', - value: data.summary || '', - //width: 300 + value: data.summary || '' }) .css(css) + .css({marginTop: '2px'}) .bindEvent({ submit: function(event) { editMetadata('summary', event.value);