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
Node gets inserted after the body tag if you choose insert "AFTER"
function addSectionComponent(component, after = true) { let node = generateElements(component.html)[0]; if (after) { //start if (addSectionElement.tagName == "BODY") { addSectionElement.append(node); } else { addSectionElement.after(node); } //end } else { addSectionElement.append(node); } if (component.afterDrop) { node = component.afterDrop(node); } node = node; self.selectNode(node); self.loadNodeComponent(node); Vvveb.TreeList.loadComponents(); Vvveb.TreeList.selectComponent(node); Vvveb.Undo.addMutation({ type: "childList", target: node.parentNode, addedNodes: [node], nextSibling: node.nextSibling, }); }
If the selected node is body insert within the body.
The text was updated successfully, but these errors were encountered:
Thanks for the bug report, it was fixed in d575326 add component button is hidden for body.
Sorry, something went wrong.
No branches or pull requests
Node gets inserted after the body tag if you choose insert "AFTER"
If the selected node is body insert within the body.
The text was updated successfully, but these errors were encountered: