remove animation

This commit is contained in:
Morris Jobke 2013-03-27 15:19:28 +01:00
parent d3ca97dd2f
commit 97d73d41a8
1 changed files with 1 additions and 2 deletions

View File

@ -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--;
}