From 8bfa215208f593e30964604fed6d80d852cae3b5 Mon Sep 17 00:00:00 2001 From: tamaina Date: Sun, 15 Apr 2018 23:49:14 +0900 Subject: [PATCH] Update timeline.vue --- src/client/app/desktop/views/components/timeline.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/client/app/desktop/views/components/timeline.vue b/src/client/app/desktop/views/components/timeline.vue index 829e73106..dfe3e5437 100644 --- a/src/client/app/desktop/views/components/timeline.vue +++ b/src/client/app/desktop/views/components/timeline.vue @@ -113,8 +113,7 @@ export default Vue.extend({ const current = window.scrollY + window.innerHeight; if (current > document.body.offsetHeight - 8) this.more(); } - if (window.scrollY > 100) this.isTop = false; - else this.isTop = true; + this.isTop = window.scrollY < 100; }, onKeydown(e) { if (e.target.tagName != 'INPUT' && e.target.tagName != 'TEXTAREA') {