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
v1.0.0-rc.2 breaks PR #1083, v1.0.0-rc.1 is good.
v1.0.0-rc.2
v1.0.0-rc.1
regression made by this:
html2canvas/src/css/layout/bounds.ts
Lines 18 to 26 in 9a63797
The text was updated successfully, but these errors were encountered:
code from v1.0.0-rc.1 is like this:
static fromClientRect(clientRect: ClientRect, scrollX: number, scrollY: number): Bounds { return new Bounds(clientRect.left + scrollX, clientRect.top + scrollY, clientRect.width, clientRect.height); } } export const parseBounds = (node: Element, scrollX: number, scrollY: number): Bounds => { return Bounds.fromClientRect(node.getBoundingClientRect(), scrollX, scrollY); };
Sorry, something went wrong.
Maybe you should create a new pull request with the fix for this regression?
No branches or pull requests
Please follow the general troubleshooting steps first:
Bug reports:
v1.0.0-rc.2
breaks PR #1083,v1.0.0-rc.1
is good.regression made by this:
html2canvas/src/css/layout/bounds.ts
Lines 18 to 26 in 9a63797
Specifications:
The text was updated successfully, but these errors were encountered: