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

remove tag splitting and change the tag merge functionality to allow merging to multiple tags

This commit is contained in:
John Moore 2014-09-14 10:41:59 -07:00
parent 038a1024d9
commit 82139f010c
4 changed files with 77 additions and 91 deletions

View file

@ -235,21 +235,6 @@ function showEditDialog(edit_type, edit_id, edit_form_id, edit_title, refresh_ro
availableTags: parent.editTagChoices
});
}
if ($('#merge_tag').length > 0) {
$.each(parent.editTagChoices, function (i, tagtext) {
$("#merge_tag").append(new Option(tagtext, tagtext));
});
}
if ($('#clone_tags').length > 0) {
$("#clone_tags").tagit({
allowSpaces: true,
singleField: true,
singleFieldDelimiter: ',',
availableTags: parent.editTagChoices
});
}
});
},
close: function (e) {