Files

5 lines
133 B
JavaScript
Raw Permalink Normal View History

2020-05-05 18:10:39 +08:00
function getViewPortHeight() {
var h = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
return h;
}