We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the moment this doesn't quite work as something can be out of bounds but at the edge of the bounding rectangle. This code:
var isOutOfBounds = (childOffsetTop > parent.clientHeight || childOffsetLeft > parent.clientWidth || childOffsetBottom < 0 || childOffsetRight < 0);
should be inclusive of edge:
var isOutOfBounds = (childOffsetTop >= parent.clientHeight || childOffsetLeft >= parent.clientWidth || childOffsetBottom <= 0 || childOffsetRight <= 0);
The text was updated successfully, but these errors were encountered:
issue/1873: inview updated to latest
0397000
fixes #1881 fixes #1873
oliverfoster
Successfully merging a pull request may close this issue.
At the moment this doesn't quite work as something can be out of bounds but at the edge of the bounding rectangle.
This code:
should be inclusive of edge:
The text was updated successfully, but these errors were encountered: