Made scrolling smooth to fix issues resulting from scrolling to bottom

This commit is contained in:
Thorsten Sommer 2024-09-05 19:32:36 +02:00
parent 4216a29325
commit ebbf0a7c95
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -24,5 +24,5 @@ window.clearDiv = function (divName) {
} }
window.scrollToBottom = function(element) { window.scrollToBottom = function(element) {
element.scrollIntoView(); element.scrollIntoView({ behavior: 'smooth', block: 'end', inline: 'nearest' });
} }