Files
mapo-core/MP.MON.Client/wwwroot/lib/WindowSize.js
T
2025-03-15 10:29:46 +01:00

6 lines
137 B
JavaScript

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