use poster128 when updating movie browser from info view

This commit is contained in:
rolux 2011-10-28 18:06:11 +00:00
parent f4c30bf5cd
commit 6e8ebf4c1d

View file

@ -340,10 +340,10 @@ pandora.ui.infoView = function(data) {
) )
.appendTo($text); .appendTo($text);
data.releasedate && $('<div>') data.releaseDate && $('<div>')
.css(css) .css(css)
.html( .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); .appendTo($text);
@ -728,7 +728,7 @@ pandora.ui.infoView = function(data) {
$browserImages.each(function() { $browserImages.each(function() {
$(this).attr({src: '/' + data.id + '/' + ( $(this).attr({src: '/' + data.id + '/' + (
ui.icons == 'posters' ? 'poster' : 'icon' ui.icons == 'posters' ? 'poster' : 'icon'
) + '64.jpg?' + Ox.uid()}); ) + '128.jpg?' + Ox.uid()});
}); });
}); });
} }