diff --git a/js/Article.js b/js/Article.js index 1135fde02..468388789 100644 --- a/js/Article.js +++ b/js/Article.js @@ -318,12 +318,12 @@ define(["dojo/_base/declare"], function (declare) { if (!App.isCombinedMode()) { const ci = $("content-insert"); if (ci) { - ci.scrollTop += ci.offsetHeight * offset * 0.9; + ci.scrollTop += ci.offsetHeight * offset * 0.99; } } else { const hi = $("headlines-frame"); if (hi) { - hi.scrollTop += hi.offsetHeight * offset * 0.9; + hi.scrollTop += hi.offsetHeight * offset * 0.99; } } diff --git a/js/Headlines.js b/js/Headlines.js index 07bebe1f9..52c1c5842 100755 --- a/js/Headlines.js +++ b/js/Headlines.js @@ -1386,7 +1386,7 @@ define(["dojo/_base/declare"], function (declare) { scrollByPages: function (offset) { const hi = $("headlines-frame"); if (hi) { - hi.scrollTop += hi.offsetHeight * offset * 0.9; + hi.scrollTop += hi.offsetHeight * offset * 0.99; } }, initHeadlinesMenu: function () {