fix a bug where after selecting an item in clip view (making the poster appear) and then switching to grid view would not make the video preview appear (but keep the poster around)
This commit is contained in:
parent
03f0b4a726
commit
f75fc026ba
1 changed files with 5 additions and 0 deletions
|
@ -19,6 +19,11 @@ pandora.ui.info = function() {
|
|||
},
|
||||
pandora_item: updateInfo,
|
||||
pandora_listselection: updateInfo,
|
||||
pandora_listview: function(data) {
|
||||
if (!pandora.isClipView(data.value) && pandora.isClipView(data.previousValue)) {
|
||||
updateInfo();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
//pandora.$ui.leftPanel && resize();
|
||||
|
|
Loading…
Reference in a new issue