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

11 lines
258 B
JavaScript
Raw Normal View History

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