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

28 lines
473 B
JavaScript
Raw Normal View History

2013-04-10 17:03:28 -04:00
(function (window) {
2013-04-08 13:46:59 -07:00
2013-04-10 17:03:28 -04:00
function playlist() {
var self = this;
2013-04-08 13:46:59 -07:00
2013-04-10 17:03:28 -04:00
self.queue = [];
2013-04-08 13:46:59 -07:00
2013-04-10 17:03:28 -04:00
self.add = function (item) {
2013-04-08 13:46:59 -07:00
2013-04-10 17:03:28 -04:00
queue.push(item);
};
2013-04-08 13:46:59 -07:00
2013-04-10 17:03:28 -04:00
self.remove = function (index) {
2013-04-10 13:11:23 -04:00
2013-04-10 17:03:28 -04:00
queue.splice(index, 1);
};
2013-04-10 13:11:23 -04:00
2013-04-10 17:03:28 -04:00
self.play = function (index) {
2013-04-10 13:11:23 -04:00
2013-04-10 17:03:28 -04:00
MediaPlayer.play(queue[index]);
queue.shift();
};
2013-04-10 13:11:23 -04:00
2013-04-10 17:03:28 -04:00
return self;
}
window.Playlist = new playlist();
})(window);