From 68fc8e5bfd41419f44e6ea0df1583f38eaf0bf90 Mon Sep 17 00:00:00 2001 From: Nicolas Perriault Date: Sat, 6 May 2017 10:36:17 +0200 Subject: [PATCH] Prevent thread view jiggling when scrolling to target toot. --- public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/index.html b/public/index.html index 3953542..1e6ff54 100644 --- a/public/index.html +++ b/public/index.html @@ -44,7 +44,7 @@ requestAnimationFrame(function() { var element = document.getElementById(id); if (element) { - element.scrollIntoView(true); + element.scrollIntoView(false); } }); });