fix poster/frames selection list
This commit is contained in:
parent
aa69994b8f
commit
19b2bb7f06
1 changed files with 2 additions and 1 deletions
|
@ -679,7 +679,7 @@ pandora.ui.infoView = function(data) {
|
||||||
pandora.api.get({
|
pandora.api.get({
|
||||||
id: data.id,
|
id: data.id,
|
||||||
keys: [ui.icons == 'posters' ? 'posters' : 'frames']
|
keys: [ui.icons == 'posters' ? 'posters' : 'frames']
|
||||||
}, function(result) {
|
}, 0, function(result) {
|
||||||
var images = result.data[ui.icons == 'posters' ? 'posters' : 'frames'],
|
var images = result.data[ui.icons == 'posters' ? 'posters' : 'frames'],
|
||||||
selectedImage = images.filter(function(image) {
|
selectedImage = images.filter(function(image) {
|
||||||
return image.selected;
|
return image.selected;
|
||||||
|
@ -774,6 +774,7 @@ pandora.ui.infoView = function(data) {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.appendTo($info);
|
.appendTo($info);
|
||||||
|
$list.size();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue