1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 09:49:30 +02:00

Add merge on tags (fix #120)

Set classic theme box size to 95% (fix #221)
This commit is contained in:
Afterster 2014-05-29 23:03:15 +02:00
parent 740427c328
commit f63768348f
7 changed files with 107 additions and 26 deletions

View file

@ -228,6 +228,12 @@ function showEditDialog(edit_type, edit_id, edit_form_id, edit_title, refresh_ro
availableTags: parent.editTagChoices
});
}
if ($('#select_tags').length > 0) {
$.each(parent.editTagChoices, function(i, tagtext) {
$("#select_tags").append(new Option(tagtext, tagtext));
});
}
});
},
close: function (e) {