Blocking and blacklisting does not exist anymore.
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Tue, 9 Nov 2010 19:49:28 +0000 (20:49 +0100)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Wed, 10 Nov 2010 19:50:12 +0000 (20:50 +0100)
src/main/resources/templates/include/head.html

index f4eddf8..8f7aa48 100644 (file)
                                });
                                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;
-                       });
                });
        </script>