The builder interface loads itself in the preview panel whenever I click on a button element. So far I’ve tried a default button and a button that is a Component. It happens in both cases.
Here’s a log file with the errors from the browser console.
The builder interface loads itself in the preview panel whenever I click on a button element. So far I’ve tried a default button and a button that is a Component. It happens in both cases.
Here’s a log file with the errors from the browser console.
Thanks! Fixed. It’s an issue with one of the anchors on your page having href="#0"
and the scroll spy script is trying to use that to find a corresponding section and failing since #0
isn’t a valid ID. Was able to filter that out for the next patch. In the meantime you can workaround it by setting a different href.
Thanks, that’s it.
You’re welcome!