mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add + button to song lists
This commit is contained in:
parent
dc02d75161
commit
3ed10f65e5
12 changed files with 76 additions and 16 deletions
|
@ -274,7 +274,8 @@
|
|||
playFromHere: true,
|
||||
action: 'playallfromhere',
|
||||
smallIcon: true,
|
||||
artist: true
|
||||
artist: true,
|
||||
queueButton: true
|
||||
});
|
||||
break;
|
||||
|
||||
|
|
|
@ -1260,7 +1260,8 @@
|
|||
action: 'playallfromhere',
|
||||
image: false,
|
||||
artist: 'auto',
|
||||
containerAlbumArtist: item.AlbumArtist
|
||||
containerAlbumArtist: item.AlbumArtist,
|
||||
queueButton: true
|
||||
});
|
||||
isList = true;
|
||||
}
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
$('#selectGuideDays', page).val(config.GuideDays || '');
|
||||
|
||||
$('#chkMovies', page).checked(config.EnableMovieProviders);
|
||||
$('#chkOrganize', page).checked(config.EnableAutoOrganize);
|
||||
$('#chkConvertRecordings', page).checked(config.EnableRecordingEncoding);
|
||||
$('#chkPreserveAudio', page).checked(config.EnableOriginalAudioWithEncodedRecordings || false);
|
||||
$('#chkPreserveVideo', page).checked(config.RecordedVideoCodec == 'copy');
|
||||
|
@ -38,7 +37,6 @@
|
|||
|
||||
config.GuideDays = $('#selectGuideDays', form).val() || null;
|
||||
config.EnableMovieProviders = $('#chkMovies', form).checked();
|
||||
config.EnableAutoOrganize = $('#chkOrganize', form).checked();
|
||||
config.EnableRecordingEncoding = $('#chkConvertRecordings', form).checked();
|
||||
config.EnableOriginalAudioWithEncodedRecordings = $('#chkPreserveAudio', form).checked();
|
||||
config.RecordedVideoCodec = $('#chkPreserveVideo', form).checked() ? 'copy' : null;
|
||||
|
|
|
@ -98,7 +98,8 @@
|
|||
html = listView.getListViewHtml({
|
||||
items: result.Items,
|
||||
context: 'music',
|
||||
sortBy: query.SortBy
|
||||
sortBy: query.SortBy,
|
||||
queueButton: true
|
||||
});
|
||||
}
|
||||
else if (viewStyle == "PosterCard") {
|
||||
|
|
|
@ -73,7 +73,8 @@
|
|||
items: result.Items,
|
||||
action: 'playallfromhere',
|
||||
smallIcon: true,
|
||||
artist: true
|
||||
artist: true,
|
||||
queueButton: true
|
||||
});
|
||||
|
||||
var i, length;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue