diff --git a/static/js/pandora/browser.js b/static/js/pandora/browser.js index d4110d6f6..0f5a01d2e 100644 --- a/static/js/pandora/browser.js +++ b/static/js/pandora/browser.js @@ -60,7 +60,7 @@ pandora.ui.browser = function() { url = '/' + data.id + '/' + ( ui.icons == 'posters' ? (ui.showSitePoster ? 'siteposter' : 'poster') : 'icon' - ) + size + '.jpg', + ) + '128.jpg', format, info, sortKey = sort[0].key; if (['title', 'director'].indexOf(sortKey) > -1) { info = data['year']; @@ -95,6 +95,7 @@ pandora.ui.browser = function() { max: 1, min: 1, orientation: 'horizontal', + pageLength: 32, selected: [pandora.user.ui.item], size: 64, sort: ['text', 'position'].indexOf(pandora.user.ui.listSort) > -1 diff --git a/static/js/pandora/infoView.js b/static/js/pandora/infoView.js index 9ab574956..fc828cee3 100644 --- a/static/js/pandora/infoView.js +++ b/static/js/pandora/infoView.js @@ -244,7 +244,8 @@ pandora.ui.infoView = function(data) { data.alternativeTitles && $('
') .css(css) .html( - formatKey('Alternative Titles') + data.alternativeTitles.map(function(value) { + formatKey('Alternative Title' + (data.alternativeTitles.length == 1 ? '' : 's')) + + data.alternativeTitles.map(function(value) { return value[0] + (value[1] ? ' ' + formatLight('(' + value[1] + ')') : ''); }).join(', ')