1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

more work on channel downloading

This commit is contained in:
Luke Pulverenti 2014-06-02 22:01:30 -04:00
parent c4cedff7b4
commit d3a7d45969
3 changed files with 14 additions and 4 deletions

View file

@ -31,6 +31,12 @@
function loadPage(page, config, allChannelFeatures) {
if (allChannelFeatures.length) {
$('.noChannelsHeader', page).hide();
} else {
$('.noChannelsHeader', page).show();
}
var downloadableList = allChannelFeatures.filter(function (i) {
return i.CanDownloadAllMedia;
});