diff options
author | Bart Polot <bart@net.in.tum.de> | 2014-02-17 15:26:22 +0000 |
---|---|---|
committer | Bart Polot <bart@net.in.tum.de> | 2014-02-17 15:26:22 +0000 |
commit | f9e1f26e0afb4ff993a4effa6af6cff0fc600674 (patch) | |
tree | 28c30025ddae0d2660f0b7e2a54e271d49204c48 /contrib/log.php | |
parent | b05f8c9e5092ffb8937cc0bcf2913dd78a118cae (diff) |
- consider peers on level change
Diffstat (limited to 'contrib/log.php')
-rw-r--r-- | contrib/log.php | 4 |
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) { $(".btn-showlevel").removeClass("active"); $("#"+level).addClass("active"); for (var index = 0; index < types.length; ++index) { - $("."+types[index]).show(); + $(".btn-showpeer.active").each(function(){ + $("."+types[index]+"."+this.id).show(); + }); if (types[index] == level) return; } |