From: David ‘Bombe’ Roden Date: Tue, 9 Nov 2010 19:49:28 +0000 (+0100) Subject: Blocking and blacklisting does not exist anymore. X-Git-Tag: 0.2.1~14 X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=474468d90d28b2fcea8776fc1dfc74c0972b55e0;hp=455d5d648d6bd07bcdbbb08b98b2f0596d1c81ed;p=Sone.git Blocking and blacklisting does not exist anymore. --- diff --git a/src/main/resources/templates/include/head.html b/src/main/resources/templates/include/head.html index f4eddf8..8f7aa48 100644 --- a/src/main/resources/templates/include/head.html +++ b/src/main/resources/templates/include/head.html @@ -93,36 +93,6 @@ }); return false; }); - $("#sone .block").submit(function() { - var blockElement = this; - $.getJSON("ajax/blockSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() { - $(blockElement).addClass("hidden"); - $(blockElement).parent().find(".unblock").removeClass("hidden"); - }); - return false; - }); - $("#sone .unblock").submit(function() { - var unblockElement = this; - $.getJSON("ajax/unblockSone.ajax", { "sone": getSoneId(this), "formPassword": getFormPassword() }, function() { - $(unblockElement).addClass("hidden"); - $(unblockElement).parent().find(".block").removeClass("hidden"); - }); - return false; - }); - $("#sone .blacklist").submit(function() { - var blacklistElement = this; - $.getJSON("ajax/blacklistSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() { - $(getSoneElement(blacklistElement)).slideUp(); - }); - return false; - }); - $("#sone .unblacklist").submit(function() { - var unblacklistElement = this; - $.getJSON("ajax/unblacklistSone.ajax", { "sone" : getSoneId(this), "formPassword" : getFormPassword() }, function() { - $(getSoneElement(unblacklistElement)).slideUp(); - }); - return false; - }); });