Speedup dashboard via loading events with ajax
This commit is contained in:
parent
6c777ff823
commit
8d8c161a7f
4 changed files with 14 additions and 4 deletions
|
@ -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();
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue