Files
www.prothmann.com/components/utils.jsx
Christian Anetzberger 01907eb338 Initial
2022-01-29 20:48:35 +01:00

25 lines
615 B
JavaScript

export function getWidth() {
if (typeof window != "undefined") {
return Math.max(
document.body.scrollWidth,
document.documentElement.scrollWidth,
document.body.offsetWidth,
document.documentElement.offsetWidth,
document.documentElement.clientWidth
);
}
return 0;
}
export function getHeight() {
if (typeof window != "undefined") {
return Math.max(
document.body.scrollHeight,
document.documentElement.scrollHeight,
document.body.offsetHeight,
document.documentElement.offsetHeight,
document.documentElement.clientHeight
);
}
}