mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
18 lines
No EOL
323 B
JavaScript
18 lines
No EOL
323 B
JavaScript
var PlayList = {
|
|
|
|
queue: Array(),
|
|
|
|
addItem: function (item) {
|
|
PlayList.queue.push(item);
|
|
},
|
|
|
|
removeItem: function (index) {
|
|
PlayList.queue.splice(index, 1);
|
|
},
|
|
|
|
playItem: function (index) {
|
|
MediaPlayer.play(PlayList.queue[index]);
|
|
PlayList.queue.shift();
|
|
}
|
|
|
|
}; |