fix list for undefined values, i.e. resolution

This commit is contained in:
j 2014-12-21 15:30:52 +00:00
parent 0be16d93a6
commit 39cdfc131b
1 changed files with 3 additions and 1 deletions

View File

@ -134,7 +134,9 @@ pandora.ui.list = function() {
info = data['year'];
} else {
format = pandora.getSortKeyData(sortKey).format;
if (format) {
if (Ox.isUndefined(data[sortKey]) || Ox.isNull(data[sortKey])) {
info = '';
} else if (format) {
info = (
/^color/.test(format.type.toLowerCase()) ? Ox.Theme : Ox
)['format' + Ox.toTitleCase(format.type)].apply(