Skip to content
Snippets Groups Projects
Commit 866ca51d authored by Morris Jobke's avatar Morris Jobke
Browse files

fix typo and remove animation

parent f19fd302
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,6 @@ OC.Log={
$.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').hide();
}
......@@ -33,7 +32,7 @@ OC.Log={
count = count || 10;
//calculate remaining items - at least 3
OC.Log.loaded = Math.max(3,OC.Log.loaded-count);
$('#moreLog').hide();
$('#moreLog').show();
// remove all non-remaining items
$('#log tr').slice(OC.Log.loaded).remove();
if(OC.Log.loaded <= 3)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment