From 0d3117e4722e1ced87ad4bdc81a794c03609c3dd Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 21 May 2019 03:40:18 +0900 Subject: Fix --- src/client/app/common/scripts/paging.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/client/app/common/scripts') 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); }); }, -- cgit v1.2.3-freya