Files
mapo-core/MP-TAB3/wwwroot/lib/WindowSize.js
T
2023-12-18 11:36:24 +01:00

6 lines
137 B
JavaScript

window.getWindowDimensions = function () {
return {
width: window.innerWidth,
height: window.innerHeight
};
};