mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add playlist shuffling toggle to remotecontrol.js
This commit is contained in:
parent
74d32d3cbd
commit
ff6bfbf2b4
12 changed files with 143 additions and 7 deletions
|
@ -506,6 +506,13 @@ define(['playbackManager', 'events', 'serverNotifications', 'connectionManager']
|
|||
});
|
||||
};
|
||||
|
||||
SessionPlayer.prototype.setPlaylistShuffleMode = function (mode) {
|
||||
|
||||
sendCommandByName(this, 'SetPlaylistShuffleMode', {
|
||||
ShuffleMode: mode
|
||||
});
|
||||
};
|
||||
|
||||
SessionPlayer.prototype.displayContent = function (options) {
|
||||
|
||||
sendCommandByName(this, 'DisplayContent', options);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue