Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gapczynski <GapczynskiM@gmail.com>2012-05-02 23:26:42 +0400
committerMichael Gapczynski <GapczynskiM@gmail.com>2012-05-02 23:26:42 +0400
commit31d623f426ac7475588b771036ecfeb2f69b9fe5 (patch)
tree644d3392ae94487bcdfc6c666393740387777a45 /settings
parent6d37b8567b86af24aaa8d964ca893fb6a5349cd6 (diff)
Fix log viewing bug
Diffstat (limited to 'settings')
-rw-r--r--settings/js/log.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/log.js b/settings/js/log.js
index 5dd9c94ae0c..6063c7d9a9f 100644
--- a/settings/js/log.js
+++ b/settings/js/log.js
@@ -25,7 +25,6 @@ OC.Log={
$('html, body').animate({scrollTop: $(document).height()}, 800);
}
});
- OC.Log.loaded+=count;
},
addEntries:function(entries){
for(var i=0;i<entries.length;i++){
@@ -48,6 +47,7 @@ OC.Log={
row.append(timeTd);
$('#log').append(row);
}
+ OC.Log.loaded += entries.length;
}
}