compute nameKeys, listKeys from config

This commit is contained in:
j 2015-10-20 18:13:38 +01:00
commit b14f729768
3 changed files with 33 additions and 14 deletions

View file

@ -18,8 +18,16 @@ pandora.ui.infoView = function(data) {
iconLeft = iconSize == 256 ? Math.floor((iconSize - iconWidth) / 2) : 0,
borderRadius = ui.icons == 'posters' ? 0 : iconSize / 8,
margin = 16,
nameKeys = ['director'],
listKeys = nameKeys.concat(['country', 'groups']),
nameKeys = pandora.site.itemKeys.filter(function(key) {
return key.sortType == 'person';
}).map(function(key) {
return key.id;
}),
listKeys = pandora.site.itemKeys.filter(function(key) {
return Ox.isArray(key.type);
}).map(function(key){
return key.id;
}),
posterKeys = nameKeys.concat(['title', 'year']),
statisticsWidth = 128,
@ -181,7 +189,7 @@ pandora.ui.infoView = function(data) {
});
if (!canEdit) {
pandora.createLinks($info);
pandora.createLinks($info);
}
// Title -------------------------------------------------------------------