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:
rolux 2011-11-07 20:08:58 +00:00
parent 03f0b4a726
commit f75fc026ba

View file

@ -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();