UNPKG

@shopify/polaris

Version:

Shopify’s product component library

12 lines (10 loc) 257 B
function isElementInViewport(element) { var { top, left, bottom, right } = element.getBoundingClientRect(); return top >= 0 && right <= window.innerWidth && bottom <= window.innerHeight && left >= 0; } export { isElementInViewport };