1
0
Fork 0
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:
Luke Pulverenti 2017-01-12 14:50:38 -05:00
parent dc02d75161
commit 3ed10f65e5
12 changed files with 76 additions and 16 deletions

View file

@ -274,7 +274,8 @@
playFromHere: true,
action: 'playallfromhere',
smallIcon: true,
artist: true
artist: true,
queueButton: true
});
break;

View file

@ -1260,7 +1260,8 @@
action: 'playallfromhere',
image: false,
artist: 'auto',
containerAlbumArtist: item.AlbumArtist
containerAlbumArtist: item.AlbumArtist,
queueButton: true
});
isList = true;
}

View file

@ -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;

View file

@ -98,7 +98,8 @@
html = listView.getListViewHtml({
items: result.Items,
context: 'music',
sortBy: query.SortBy
sortBy: query.SortBy,
queueButton: true
});
}
else if (viewStyle == "PosterCard") {

View file

@ -73,7 +73,8 @@
items: result.Items,
action: 'playallfromhere',
smallIcon: true,
artist: true
artist: true,
queueButton: true
});
var i, length;