Files
gpw_next/GPW.CORE.SMART/wwwroot/lib/WindowSize.js
T
2023-01-12 11:38:25 +01:00

6 lines
137 B
JavaScript

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