diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-11-11 11:10:37 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-11-11 11:10:37 +0900 |
| commit | 5e10eb828c94f4353bd6bb01764469f4f93e6d3b (patch) | |
| tree | 4ae8ae7f7486b06d93994fcb481dc1e6705e0804 /src | |
| parent | v3008 (diff) | |
| download | misskey-5e10eb828c94f4353bd6bb01764469f4f93e6d3b.tar.gz misskey-5e10eb828c94f4353bd6bb01764469f4f93e6d3b.tar.bz2 misskey-5e10eb828c94f4353bd6bb01764469f4f93e6d3b.zip | |
:art:
Diffstat (limited to 'src')
| -rw-r--r-- | src/web/app/desktop/tags/home-widgets/timeline.tag | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/web/app/desktop/tags/home-widgets/timeline.tag b/src/web/app/desktop/tags/home-widgets/timeline.tag index 735783049c..45f3470e76 100644 --- a/src/web/app/desktop/tags/home-widgets/timeline.tag +++ b/src/web/app/desktop/tags/home-widgets/timeline.tag @@ -3,8 +3,12 @@ <div class="loading" if={ isLoading }> <mk-ellipsis-icon/> </div> - <p class="empty" if={ isEmpty }><i class="fa fa-comments-o"></i>自分の投稿や、自分がフォローしているユーザーの投稿が表示されます。</p> - <mk-timeline ref="timeline"><yield to="footer"><i class="fa fa-moon-o" if={ !parent.moreLoading }></i><i class="fa fa-spinner fa-pulse fa-fw" if={ parent.moreLoading }></i></yield/> + <p class="empty" if={ isEmpty && !isLoading }><i class="fa fa-comments-o"></i>自分の投稿や、自分がフォローしているユーザーの投稿が表示されます。</p> + <mk-timeline ref="timeline" hide={ isLoading }> + <yield to="footer"> + <i class="fa fa-moon-o" if={ !parent.moreLoading }></i><i class="fa fa-spinner fa-pulse fa-fw" if={ parent.moreLoading }></i> + </yield/> + </mk-timeline> <style> :scope display block |