Update timeline.vue

This commit is contained in:
tamaina 2018-04-15 23:49:14 +09:00 committed by GitHub
parent 6122c50ca5
commit 8bfa215208
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -113,8 +113,7 @@ export default Vue.extend({
const current = window.scrollY + window.innerHeight; const current = window.scrollY + window.innerHeight;
if (current > document.body.offsetHeight - 8) this.more(); if (current > document.body.offsetHeight - 8) this.more();
} }
if (window.scrollY > 100) this.isTop = false; this.isTop = window.scrollY < 100;
else this.isTop = true;
}, },
onKeydown(e) { onKeydown(e) {
if (e.target.tagName != 'INPUT' && e.target.tagName != 'TEXTAREA') { if (e.target.tagName != 'INPUT' && e.target.tagName != 'TEXTAREA') {