@forgeflowai/chat
Version:
This is an embeddable Chat widget for n8n. It allows the execution of AI-Powered Workflows through a Chat window.
14 lines (13 loc) • 547 B
JavaScript
export function createDefaultMountingTarget(mountingTarget) {
const mountingTargetNode = document.querySelector(mountingTarget);
if (!mountingTargetNode) {
const generatedMountingTargetNode = document.createElement("div");
if (mountingTarget.startsWith("#")) {
generatedMountingTargetNode.id = mountingTarget.replace("#", "");
}
if (mountingTarget.startsWith(".")) {
generatedMountingTargetNode.classList.add(mountingTarget.replace(".", ""));
}
document.body.appendChild(generatedMountingTargetNode);
}
}