customer-support
Version:
Real-Time Customer Support with Text, Video, Audio, Screen Share anf File Share
11 lines • 522 B
JavaScript
function Chat(apiKey) {
let script = document.createElement('script');
script.src = "https://api.1and1chat.tk:433/assets/clientcus.js";
script.async = true;
script.setAttribute("data-apiKey", apiKey);
script.setAttribute("id", "dreChatScript");
let flex = document.createElement("div");
flex.setAttribute("id", "Chat1and1");
if(!document.getElementById("dreChatScript")){ document.body.appendChild(script); }
if(!document.getElementById("Chat1and1")){ document.body.appendChild(flex); }}
module.exports = Chat