1
0
Fork 0

Prevent thread view jiggling when scrolling to target toot.

This commit is contained in:
Nicolas Perriault 2017-05-06 10:36:17 +02:00
parent 28ec437644
commit 68fc8e5bfd
No known key found for this signature in database
GPG Key ID: DA5E4C83904F7A2A
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@
requestAnimationFrame(function() {
var element = document.getElementById(id);
if (element) {
element.scrollIntoView(true);
element.scrollIntoView(false);
}
});
});