fix poster/frames selection list

This commit is contained in:
j 2012-04-18 17:06:23 +02:00
parent aa69994b8f
commit 19b2bb7f06
1 changed files with 2 additions and 1 deletions

View File

@ -679,7 +679,7 @@ pandora.ui.infoView = function(data) {
pandora.api.get({
id: data.id,
keys: [ui.icons == 'posters' ? 'posters' : 'frames']
}, function(result) {
}, 0, function(result) {
var images = result.data[ui.icons == 'posters' ? 'posters' : 'frames'],
selectedImage = images.filter(function(image) {
return image.selected;
@ -774,6 +774,7 @@ pandora.ui.infoView = function(data) {
}
})
.appendTo($info);
$list.size();
});
}