From 62906d72a260701927e6bfc4c38aa3d1bac93d47 Mon Sep 17 00:00:00 2001 From: John McLear Date: Sun, 10 Jan 2021 15:51:02 +0000 Subject: [PATCH] tidy up --- src/static/js/scroll.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static/js/scroll.js b/src/static/js/scroll.js index f752757da..86d6a3344 100644 --- a/src/static/js/scroll.js +++ b/src/static/js/scroll.js @@ -294,7 +294,7 @@ Scroll.prototype.scrollNodeVerticallyIntoView = function (rep, innerHeight) { setTimeout(() => { const outer = window.parent; // scroll to the very end of the pad outer - outer.scrollTo(0, outer[0].innerHeight); + outer.scrollTo(0, outer[0].innerHeight); }, 150); // if the above setTimeout and functionality is removed then hitting an enter // key while on the last line wont be an optimal user experience