summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--settings/js/log.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/settings/js/log.js b/settings/js/log.js
index fe40f6e5d56..d9a991af011 100644
--- a/settings/js/log.js
+++ b/settings/js/log.js
@@ -33,9 +33,8 @@ OC.Log={
showLess:function(count){
count = count || 10;
$('#moreLog').css('display', '');
- $('html, body').animate({scrollTop: $(document).height()}, 800);
while(OC.Log.loaded > 3 && count){
- $('#log tr').last().remove()
+ $('#log tr').last().remove();
OC.Log.loaded -= 1;
count--;
}