]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Fix jumpy textarea with long content in post edit 980/head
authorArthurHoaro <arthur@hoa.ro>
Sun, 1 Oct 2017 09:49:17 +0000 (11:49 +0200)
committerArthurHoaro <arthur@hoa.ro>
Sun, 1 Oct 2017 09:49:17 +0000 (11:49 +0200)
We manually reset the scroll position, to avoid height = 'auto' jump to the top

Fixes #971

tpl/default/js/shaarli.js

index 1c66ebbdd708f033c5ae26e747e3f313137edee7..55656f80ea39032dd62b321cf6e707aa3e786868 100644 (file)
@@ -275,8 +275,14 @@ window.onload = function () {
     };
     function init () {
         function resize () {
+            /* Fix jumpy resizing: https://stackoverflow.com/a/18262927/1484919 */
+            var scrollTop  = window.pageYOffset ||
+                (document.documentElement || document.body.parentNode || document.body).scrollTop;
+
             description.style.height = 'auto';
             description.style.height = description.scrollHeight+10+'px';
+
+            window.scrollTo(0, scrollTop);
         }
         /* 0-timeout to get the already changed text */
         function delayedResize () {