mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
6 lines
168 B
JavaScript
6 lines
168 B
JavaScript
function Remove_Alias(alias) {
|
|
ajax.get("wiki.php?action=delete_alias&auth=" + authkey + "&alias=" + alias, function(response) {
|
|
$('#alias_' + alias).hide();
|
|
});
|
|
}
|