aboutsummaryrefslogtreecommitdiff
path: root/contrib/log.php
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/log.php')
-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;