mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
20 lines
518 B
JavaScript
20 lines
518 B
JavaScript
define([], function () {
|
|
|
|
return {
|
|
|
|
showPanel: function (items) {
|
|
|
|
require(['playlisteditor'], function (playlisteditor) {
|
|
new playlisteditor().show(items);
|
|
});
|
|
},
|
|
|
|
supportsPlaylists: function (item) {
|
|
|
|
if (item.Type == 'Program') {
|
|
return false;
|
|
}
|
|
return item.RunTimeTicks || item.IsFolder || item.Type == "Genre" || item.Type == "MusicGenre" || item.Type == "MusicArtist";
|
|
}
|
|
};
|
|
}); |