From 474468d90d28b2fcea8776fc1dfc74c0972b55e0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Tue, 9 Nov 2010 20:49:28 +0100 Subject: [PATCH] Blocking and blacklisting does not exist anymore. --- src/main/resources/templates/include/head.html | 30 -------------------------- 1 file changed, 30 deletions(-) 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; - }); }); -- 2.7.4