summaryrefslogtreecommitdiff
path: root/src/client/app/common/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/common/scripts')
-rw-r--r--src/client/app/common/scripts/paging.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/app/common/scripts/paging.ts b/src/client/app/common/scripts/paging.ts
index 4875ce620f..c13a607e6f 100644
--- a/src/client/app/common/scripts/paging.ts
+++ b/src/client/app/common/scripts/paging.ts
@@ -82,8 +82,10 @@ export default (opts) => ({
}
this.inited = true;
this.fetching = false;
+ if (opts.onInited) opts.onInited(this);
}, e => {
this.fetching = false;
+ if (opts.onInited) opts.onInited(this);
});
},