I am using Sap Conversational AI on my SAPUI5 app via Webchat. I added Webchat script on my apps Component.js. It works fine but the chat icon covers the app's footer and I couldn't make it draggable.
Here is component.js code;
if ( !document.getElementById("chat-bot" )) {
var s = document.createElement("script");
s.setAttribute("id", "chat-bot");
s.setAttribute("src", "https://cdn.cai.tools.sap/webchat/webchat.js");
document.getElementsByTagName('head')[0].appendChild(s);
}
s.setAttribute("channelId", "XXXXX-XXXX-XXXX-XXXXX-XXXXXXX");
s.setAttribute("token", "XXXXXXXXXXXXXXXXXXXXXXXX");
Anyone knows how can I make it draggable or put the icon on the footer too?