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

remove my testing alert

This commit is contained in:
John Moore 2013-07-25 20:52:04 -05:00
parent 7e4a067806
commit 09e09523af

View file

@ -102,11 +102,9 @@ function check_inline_song_edit(type, song) {
} }
// really should be using jquery ui and have something nice looking // really should be using jquery ui and have something nice looking
function showAddTagDialog(id, type, path) { function showAddTagDialog(id, type, path) {
var tagName = window.prompt('Enter Tag:', ''); var tagName = window.prompt('Enter Tag:', '');
var url = path + '/server/ajax.server.php?page=tag&action=add_tag_by_name&type=' + type + '&object_id=' + id + '&tag_name=' + tagName; var url = path + '/server/ajax.server.php?page=tag&action=add_tag_by_name&type=' + type + '&object_id=' + id + '&tag_name=' + tagName;
alert(url); ajaxPut(url);
ajaxPut(url);
} }