aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-02-17 15:26:22 +0000
committerBart Polot <bart@net.in.tum.de>2014-02-17 15:26:22 +0000
commitf9e1f26e0afb4ff993a4effa6af6cff0fc600674 (patch)
tree28c30025ddae0d2660f0b7e2a54e271d49204c48
parentb05f8c9e5092ffb8937cc0bcf2913dd78a118cae (diff)
downloadgnunet-f9e1f26e0afb4ff993a4effa6af6cff0fc600674.tar.gz
gnunet-f9e1f26e0afb4ff993a4effa6af6cff0fc600674.zip
- consider peers on level change
-rw-r--r--contrib/log.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/log.php b/contrib/log.php
index 2ecf1b075..ee6fc09eb 100644
--- a/contrib/log.php
+++ b/contrib/log.php
@@ -216,7 +216,9 @@ if ($start !== null || $stop !== null) {
216 $(".btn-showlevel").removeClass("active"); 216 $(".btn-showlevel").removeClass("active");
217 $("#"+level).addClass("active"); 217 $("#"+level).addClass("active");
218 for (var index = 0; index < types.length; ++index) { 218 for (var index = 0; index < types.length; ++index) {
219 $("."+types[index]).show(); 219 $(".btn-showpeer.active").each(function(){
220 $("."+types[index]+"."+this.id).show();
221 });
220 if (types[index] == level) 222 if (types[index] == level)
221 return; 223 return;
222 } 224 }