aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-03-06 01:36:14 +0000
committerBart Polot <bart@net.in.tum.de>2014-03-06 01:36:14 +0000
commitabded0dd832481a4a779fcb85ad0b6a433ad77f3 (patch)
treead9a6a08104b1410211a500de1dbe4b4cd994965 /contrib
parent121e38c60f40238777e5704aa4aea2ca423a34fd (diff)
downloadgnunet-abded0dd832481a4a779fcb85ad0b6a433ad77f3.tar.gz
gnunet-abded0dd832481a4a779fcb85ad0b6a433ad77f3.zip
- fix level selection
Diffstat (limited to 'contrib')
-rw-r--r--contrib/log.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/contrib/log.php b/contrib/log.php
index 210047270..d4d9ed6b0 100644
--- a/contrib/log.php
+++ b/contrib/log.php
@@ -254,8 +254,11 @@ ksort($comps);
254 $(".btn-showlevel").removeClass("active"); 254 $(".btn-showlevel").removeClass("active");
255 $("#"+level).addClass("active"); 255 $("#"+level).addClass("active");
256 for (var index = 0; index < types.length; ++index) { 256 for (var index = 0; index < types.length; ++index) {
257 $(".btn-showpeer.active").each(function(){ 257 $("#btn-showpeer > .btn-element.active").each(function(){
258 $("."+types[index]+"."+this.id).show(); 258 var peer = this.id;
259 $("#btn-showcomp > .btn-element.active").each(function(){
260 $("."+types[index]+"."+peer+"."+this.id).show();
261 });
259 }); 262 });
260 if (types[index] == level) 263 if (types[index] == level)
261 return; 264 return;