Removed smooth scrolling, does not work in other browsers than FF

This commit is contained in:
Shpuld Shpuldson 2017-04-12 18:47:47 +03:00
parent a675cfbb3e
commit 3f477986cf
1 changed files with 2 additions and 10 deletions

View File

@ -104,18 +104,10 @@ const Status = {
if(this.status.id == newfocus) {
let rect = this.$el.getBoundingClientRect()
if(rect.top < 100)
window.scrollBy({
left: 0,
top: rect.top - 200,
behavior: 'smooth'
})
window.scrollBy(0, rect.top - 200)
// will be useful when scrolling down to replies or root posts is in
else if(rect.bottom > window.innerHeight - 100)
window.scrollBy({
left: 0,
top: rect.bottom + 200,
behavior: 'smooth'
})
window.scrollBy(0, rect.bottom + 200)
}
}
}