modules/webchat/index.html
<!DOCTYPE html>
<html>
<body>
<center>
<h1>Seja bem vindo ao BOILERPLATE integrado com webchat</h1>
VocĂȘ deve ver uma bola azul no canto inferior direito do seu navegador.
</center>
<script>!(function () {
let e = document.createElement("script"),
t = document.head || document.getElementsByTagName("head")[0];
(e.src =
"./1.0.1.min.js"),
(e.async = !0),
(e.onload = () => {
window.WebChat.default(
{
customData: { language: "pt-br" },
selector: "#webchat",
initPayload: "/cumprimentar",
socketUrl: "http://localhost:5005",
socketPath: "/socket.io/",
title: "Tais",
inputTextFieldHint: "Digite sua mensagem...",
connectingText: "Conectando...",
hideWhenNotConnected: true,
fullScreenMode: false,
profileAvatar: "assets/bot.png",
openLauncherImage: 'assets/launcher_button.svg',
closeLauncherImage: 'assets/launcher_button.svg',
params: {
images: {
dims: {
width: 300,
height: 200,
}
},
storage: "session"
}
},
null
);
}),
t.insertBefore(e, t.firstChild);
})();
</script>
</body>
</html>