You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
440 B

2 months ago
  1. import getComputedStyle from "./getComputedStyle.js";
  2. export default function isScrollParent(element) {
  3. // Firefox wants us to check `-x` and `-y` variations as well
  4. var _getComputedStyle = getComputedStyle(element),
  5. overflow = _getComputedStyle.overflow,
  6. overflowX = _getComputedStyle.overflowX,
  7. overflowY = _getComputedStyle.overflowY;
  8. return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX);
  9. }