Files
YouTube-Manager/Manager.App/wwwroot/js/eventConsole.js
2025-09-10 20:09:58 +02:00

17 lines
419 B
JavaScript

window.scrollToBottom = (element) => {
if (element) {
requestAnimationFrame(function () {
element.scroll({ top: element.scrollHeight, behavior: 'smooth' });
})
}
};
window.getScrollInfo = (element) => {
if (!element) return null;
return {
scrollTop: element.scrollTop,
scrollHeight: element.scrollHeight,
clientHeight: element.clientHeight
};
};