pleroma-fe/src/services/window_utils/window_utils.js

10 lines
258 B
JavaScript
Raw Normal View History

2019-04-01 22:41:34 +03:00
export const windowWidth = () =>
window.innerWidth ||
document.documentElement.clientWidth ||
document.body.clientWidth
2020-05-07 16:10:53 +03:00
export const windowHeight = () =>
window.innerHeight ||
document.documentElement.clientHeight ||
document.body.clientHeight