diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-05-21 03:40:18 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-05-21 03:40:18 +0900 |
| commit | 0d3117e4722e1ced87ad4bdc81a794c03609c3dd (patch) | |
| tree | 9b7f189fef2edb69933fc7548303b972c49a0ef7 /src/client/app/common/scripts | |
| parent | Refactoring (diff) | |
| download | sharkey-0d3117e4722e1ced87ad4bdc81a794c03609c3dd.tar.gz sharkey-0d3117e4722e1ced87ad4bdc81a794c03609c3dd.tar.bz2 sharkey-0d3117e4722e1ced87ad4bdc81a794c03609c3dd.zip | |
Fix
Diffstat (limited to 'src/client/app/common/scripts')
| -rw-r--r-- | src/client/app/common/scripts/paging.ts | 2 |
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); }); }, |