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

fix queue function

This commit is contained in:
Luke Pulverenti 2016-10-01 15:11:45 -04:00
parent 99f7d3e9f8
commit 5514d55822

View file

@ -1449,6 +1449,10 @@ var AppInfo = {};
MediaController.play(options);
},
queue: function (options) {
MediaController.queue(options);
},
currentPlaylistIndex: function (options) {
return MediaController.currentPlaylistIndex(options);
},