1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 17:59:21 +02:00

Implementation for #136 started. Album is now ready to be grouped by disks.

Need to create the new view in the album details. Group only works for album with musicbrainz identifiers.
This commit is contained in:
SUTJael 2014-03-20 21:23:34 +01:00
parent cd2e33cb1f
commit 7d22e8d466
15 changed files with 190 additions and 49 deletions

View file

@ -34,13 +34,12 @@ function showFilters(element) {
/************************************************************/
var closeplaylist;
function showPlaylistDialog(e, item_type, item_id) {
function showPlaylistDialog(e, item_type, item_ids) {
$("#playlistdialog").dialog("close");
var parent = this;
parent.itemType = item_type;
parent.itemId = item_id;
parent.contentUrl = jsAjaxServer + '/show_edit_playlist.server.php?action=show_edit_object&item_type=' + item_type + '&item_id=' + item_id;
parent.contentUrl = jsAjaxServer + '/show_edit_playlist.server.php?action=show_edit_object&item_type=' + item_type + '&item_id=' + item_ids;
parent.editDialogId = '<div id="playlistdialog"></div>';
$(parent.editDialogId).dialog({