Hi Andrew, very good page builder!
In frontend.js you use this.el.style.width = window.innerWidth + "px";
innerWidth includes the scrollbar.
I first believed changing this to window.clientWidth fixes the problem.
But I had more succes changing to document.body.clientWidth.
This may lead to other issues when the body isn't full-width.
Furthermore, There are some problems with window resizing.
Hi Andrew, very good page builder!
In
frontend.jsyou usethis.el.style.width = window.innerWidth + "px";innerWidthincludes the scrollbar.I first believed changing this to
window.clientWidthfixes the problem.But I had more succes changing to
document.body.clientWidth.This may lead to other issues when the body isn't full-width.
Furthermore, There are some problems with window resizing.