Speedup dashboard via loading events with ajax

This commit is contained in:
Dmitriy Zaporozhets 2013-01-07 14:36:01 +02:00
parent 6c777ff823
commit 8d8c161a7f
4 changed files with 14 additions and 4 deletions

View file

@ -4,9 +4,16 @@ var Pager = {
disable:false,
init:
function(limit) {
function(limit, preload) {
this.limit=limit;
this.offset=limit;
if(preload) {
this.offset = 0;
this.getOld();
} else {
this.offset = limit;
}
this.initLoadMore();
},