pleroma-fe/src/services/window_utils/window_utils.js
Henry Jameson 5509cb31a8 lint
2025-01-20 13:43:15 +02:00

9 lines
257 B
JavaScript

export const windowWidth = () =>
window.innerWidth ||
document.documentElement.clientWidth ||
document.body.clientWidth
export const windowHeight = () =>
window.innerHeight ||
document.documentElement.clientHeight ||
document.body.clientHeight