Add unregistration for channel admins

This commit is contained in:
calzoneman 2013-05-13 15:41:29 -04:00
parent 27cfbcb61a
commit 4620fb2d56
9 changed files with 82 additions and 2 deletions

View file

@ -75,6 +75,15 @@ Callbacks = {
}
},
unregisterChannel: function(data) {
if(data.success) {
alert("Channel unregistered");
}
else {
alert(data.error);
}
},
updateMotd: function(data) {
$("#motdtext").val(data.motd);
if(data.motd != "")