poster keys
This commit is contained in:
parent
8bb7ae436f
commit
1ce1ca7d89
3 changed files with 14 additions and 4 deletions
|
|
@ -20,6 +20,7 @@ pandora.ui.infoView = function(data) {
|
|||
margin = 16,
|
||||
nameKeys = ['director'],
|
||||
listKeys = nameKeys.concat(['country', 'groups']),
|
||||
posterKeys = nameKeys.concat(['title', 'year']),
|
||||
statisticsWidth = 128,
|
||||
|
||||
$bar = Ox.Bar({size: 16})
|
||||
|
|
@ -361,6 +362,11 @@ pandora.ui.infoView = function(data) {
|
|||
}
|
||||
pandora.updateItemContext();
|
||||
pandora.$ui.browser.value(result.data.id, key, result.data[key]);
|
||||
if (Ox.contains(posterKeys, key) && ui.icons == 'posters') {
|
||||
src = pandora.getMediaURL('/' + data.id + '/poster512.jpg?' + Ox.uid());
|
||||
$icon.attr({src: src});
|
||||
$reflectionIcon.attr({src: src});
|
||||
}
|
||||
pandora.$ui.itemTitle
|
||||
.options({
|
||||
title: '<b>' + result.data.title
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue