mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update slider
This commit is contained in:
parent
fab42af1a5
commit
69b1b7e164
13 changed files with 58 additions and 31 deletions
|
@ -36,8 +36,20 @@
|
|||
var folderHtml = '';
|
||||
|
||||
folderHtml += '<div class="checkboxList">';
|
||||
var excludeViewTypes = ['playlists', 'livetv', 'boxsets', 'channels'];
|
||||
var excludeItemTypes = ['Channel'];
|
||||
|
||||
folderHtml += result.Items.map(function (i) {
|
||||
|
||||
if (excludeViewTypes.indexOf(i.CollectionType || []) !== -1) {
|
||||
return '';
|
||||
}
|
||||
|
||||
// not implemented yet
|
||||
if (excludeItemTypes.indexOf(i.Type) !== -1) {
|
||||
return '';
|
||||
}
|
||||
|
||||
var currentHtml = '';
|
||||
|
||||
var id = 'chkIncludeInLatest' + i.Id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue