amis-rpc-design/node_modules/@rc-component/portal/es/util.js
2023-10-07 19:42:30 +08:00

6 lines
249 B
JavaScript

/**
* Test usage export. Do not use in your production
*/
export function isBodyOverflowing() {
return document.body.scrollHeight > (window.innerHeight || document.documentElement.clientHeight) && window.innerWidth > document.body.offsetWidth;
}