add bancomment change

This commit is contained in:
Hendrik
2017-01-31 16:15:48 +01:00
parent eb12b6ba7d
commit b16dc1d4b7
5 changed files with 58 additions and 1 deletions

View File

@@ -93,4 +93,18 @@ function updatePageN() {
).done(function (data) {
$("#admin-pageinfo").html(data);
})
}
function toggleBancomment(button) {
$(button).siblings("div").toggle();
$(button).toggle();
}
function editComment(form) {
$.post(
"API/adminChangeUser.php",
$(form).serialize()
).done(function (data) {
adminSearch();
});
}