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
Firefox 116.0.3
https://grapesjs.com/demo-mjml.html
How to reproduce the bug?
What is the expected behavior? Scrolling should work.
What is the current behavior? Scrolling doesn't work.
If is necessary to execute some code in order to reproduce the bug, paste it here below:
// your code here
The error could be in this line: https://github.com/GrapesJS/grapesjs/blob/v0.21.4/src/canvas/view/FrameView.ts#L153
The function getOffsetRect is using:
const { scrollTop, scrollLeft } = this.getBody();
scrollTop and scrollLeft are always 0, it could be replaced with:
const { scrollTop, scrollLeft } = this.getDoc().scrollingElement;
or
const { scrollTop, scrollLeft } = this.getDoc().documentElement;
The text was updated successfully, but these errors were encountered:
d9c5ee9
No branches or pull requests
GrapesJS version
What browser are you using?
Firefox 116.0.3
Reproducible demo link
https://grapesjs.com/demo-mjml.html
Describe the bug
How to reproduce the bug?
What is the expected behavior?
Scrolling should work.
What is the current behavior?
Scrolling doesn't work.
If is necessary to execute some code in order to reproduce the bug, paste it here below:
// your code here
The error could be in this line:
https://github.com/GrapesJS/grapesjs/blob/v0.21.4/src/canvas/view/FrameView.ts#L153
The function getOffsetRect is using:
scrollTop and scrollLeft are always 0, it could be replaced with:
or
Code of Conduct
The text was updated successfully, but these errors were encountered: