6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
window.getWindowDimensions = function () {
|
|
return {
|
|
width: window.innerWidth,
|
|
height: window.innerHeight
|
|
};
|
|
}; |