From 6e8ebf4c1dae2b663bc86321b07bfe2ed007ce1a Mon Sep 17 00:00:00 2001 From: rolux Date: Fri, 28 Oct 2011 18:06:11 +0000 Subject: [PATCH] use poster128 when updating movie browser from info view --- static/js/pandora/infoView.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/js/pandora/infoView.js b/static/js/pandora/infoView.js index c43caa61..92382a49 100644 --- a/static/js/pandora/infoView.js +++ b/static/js/pandora/infoView.js @@ -340,10 +340,10 @@ pandora.ui.infoView = function(data) { ) .appendTo($text); - data.releasedate && $('
') + data.releaseDate && $('
') .css(css) .html( - formatKey('Release Date') + Ox.formatDate(data.releasedate, '%A, %B %e, %Y') + formatKey('Release Date') + Ox.formatDate(data.releaseDate, '%A, %B %e, %Y') ) .appendTo($text); @@ -728,7 +728,7 @@ pandora.ui.infoView = function(data) { $browserImages.each(function() { $(this).attr({src: '/' + data.id + '/' + ( ui.icons == 'posters' ? 'poster' : 'icon' - ) + '64.jpg?' + Ox.uid()}); + ) + '128.jpg?' + Ox.uid()}); }); }); }