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

limit ifo's to 300mb+

This commit is contained in:
Luke Pulverenti 2014-02-23 22:27:13 -05:00
parent 45bcd1b40a
commit 4ab95b6e11
9 changed files with 87 additions and 81 deletions

View file

@ -31,6 +31,15 @@
$.when(promise1, promise2, promise3).done(function (response1, response2, response3) {
var item = response1[0];
currentItem = item;
if (item.Type == "UserRootFolder") {
$('.editPageInnerContent', page).hide();
return;
} else {
$('.editPageInnerContent', page).show();
}
var languages = response2[0];
var countries = response3[0];
@ -53,8 +62,6 @@
$('#refreshLoading', page).hide();
currentItem = item;
if (item.Type != "Channel" &&
item.Type != "Genre" &&
item.Type != "Studio" &&