@adoratorio/hades
Version:
A smooth scrollbar based on Hermes, scroll down 'till hell
13 lines • 506 B
JavaScript
export const isScrollableElement = (node) => {
const p = node.parentElement;
const style = window.getComputedStyle(p);
return ((p.scrollHeight > p.clientHeight ||
p.scrollWidth > p.clientWidth) &&
(style.overflow === 'auto' ||
style.overflow === 'scroll' ||
style.overflowX === 'auto' ||
style.overflowY === 'auto' ||
style.overflowX === 'scroll' ||
style.overflowY === 'scroll'));
};
//# sourceMappingURL=utils.js.map