From: Morris Jobke Date: Thu, 28 Mar 2013 14:02:31 +0000 (+0100) Subject: apply code review hints X-Git-Tag: v6.0.0alpha2~984^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=df74c0e43a1da9ca1565b23fb6a5a8608457f50a;p=nextcloud-server.git apply code review hints --- diff --git a/settings/js/log.js b/settings/js/log.js index 2e20aba3aa4..d91c180a52b 100644 --- a/settings/js/log.js +++ b/settings/js/log.js @@ -17,30 +17,27 @@ OC.Log={ levels:['Debug','Info','Warning','Error','Fatal'], loaded:3,//are initially loaded getMore:function(count){ - if(!count){ - count=10; - } + count = count || 10; $.get(OC.filePath('settings','ajax','getlog.php'),{offset:OC.Log.loaded,count:count},function(result){ if(result.status=='success'){ OC.Log.addEntries(result.data); $('html, body').animate({scrollTop: $(document).height()}, 800); if(!result.remain){ - $('#moreLog').css('display', 'none'); + $('#moreLog').hide(); } - $('#lessLog').css('display', ''); + $('#lessLog').show(); } }); }, showLess:function(count){ count = count || 10; - $('#moreLog').css('display', ''); - while(OC.Log.loaded > 3 && count){ - $('#log tr').last().remove(); - OC.Log.loaded -= 1; - count--; - } + //calculate remaining items - at least 3 + OC.Log.loaded = Math.max(3,OC.Log.loaded-count); + $('#moreLog').hide(); + // remove all non-remaining items + $('#log tr').slice(OC.Log.loaded).remove(); if(OC.Log.loaded <= 3) - $('#lessLog').css('display', 'none'); + $('#lessLog').hide(); }, addEntries:function(entries){ for(var i=0;i - +
@@ -220,8 +220,8 @@ endfor;?>
- ...'> - ...'> + +