Iceshrimp.NET/Iceshrimp.Frontend/Components/LazyNote.razor.js
2024-06-19 01:56:50 +02:00

10 lines
No EOL
177 B
JavaScript

export function getScrollHeight(id) {
const el = document.getElementById(id)
if (el == null) {
return null
} else {
return el.scrollHeight;
}
}