var chatBotDiv = document.createElement('div'); chatBotDiv.id = 'filament-ai-chat-widget'; var botProperties = [["widget-template","ebm"],["bot-bot-id","1"],["bot-provider-id","1"],["bot-name","Turn2us"],["bot-api-url","https://turn2us.ebm.ai/api"],["widget-header-name","Turn2us Chatbot"],["bot-start-intent","Get started"],["theme-header-color","#E74300"],["theme-scroll-bar-thumb-hover-color","#E74300"],["modal-cancel-button-text-color","#000000"],["modal-cancel-button-border-color","#000000"],["modal-confirm-button-color","#E74300"],["theme-header-icon-color","#000000"],["modal-confirm-button-border-color","#E74300"],["icon-background-color","#E74300"],["theme-send-message-icon-active-color","#E74300"],["theme-response-card-button-text-color","#E74300"],["theme-response-card-button-hover-background-color","#E74300"],["theme-quick-reply-text-color","#000000"],["theme-quick-reply-hover-background-color","#FADADE"],["theme-response-buttons-hover-background-color","#FADADE"],["theme-user-message-color","#E74300"],["alert-offset-right","20px"],["icon-offset-right","20px"],["widget-offset-right","20px"],["icon-offset-bottom","20px"],["widget-offset-bottom","20px"],["theme-header-text-color","#000000"],["theme-user-text-color","#000000"],["theme-response-buttons-color","#E74300"],["icon-icon-color","#000000"],["theme-response-buttons-hover-text-color","#000000"],["theme-typing-dots-color","#000000"],["theme-bot-message-color","#F2F2F2"],["theme-input-border-color","#000000"],["theme-input-placeholder-color","#5e5e5e"],["theme-send-message-icon-color","#afafaf"],["theme-scroll-bar-thumb-color","#E74300"],["modal-text-color","#000000"],["theme-response-buttons-text-color","#000000"],["bot-hide-start-intent","true"],["alert-text","Hi I am Turn2us Chatbot. Click here to chat."],["alert-background-color","#E74300"],["alert-text-color","#000000"],["alert-close-icon-color","#000000"],["widget-width","400px"],["widget-height","550px"],["widget-auto-scroll","true"],["widget-auto-scroll-position","user-message"],["theme-quick-reply-background-color","#E74300"],["theme-quick-reply-hover-text-color","#000000"],["alert-delay","10"],["widget-input-placeholder","Type your message in under 150 characters"],["bot-character-limit","150"],["bot-character-limit-warning","Your message is too long, please shorten your message to under 150 characters."],["modal-confirm-button-text-color","#000000"]]; for(var i = 0; i < botProperties.length; i++ ){ var property = botProperties[i]; chatBotDiv.setAttribute(property[0], property[1]); } document.getElementsByTagName('body')[0].append(chatBotDiv); function loadScript(url, callback) { var script = document.createElement("script"); script.type = "text/javascript"; script.async = true; if (typeof callback === "function") { if (script.readyState) { // only required for IE <9 script.onreadystatechange = function () { if (script.readyState === "loaded" || script.readyState === "complete") { script.onreadystatechange = null; callback(); } }; } else { //Others script.onload = function () { callback(); }; } } script.src = url; document.getElementsByTagName("head")[0].appendChild(script); }; var stylesheet = document.createElement('link'); stylesheet.href = 'https://turn2us.ebm.ai/widget/1/deployment/css'; stylesheet.rel = 'stylesheet'; document.head.appendChild(stylesheet); loadScript('https://turn2us.ebm.ai/widget/v1.16.0/index.js', loadCustomScript); function loadCustomScript() { loadScript('https://turn2us.ebm.ai/widget/1/deployment/javascript'); }