2704b2d5 by RSA

28823_chatbot_vuzo_link

1 parent 804c1fe9
......@@ -49,6 +49,24 @@
</body>
<script src="https://dev.start.ai-pro.org/snippets/com.global.vuzo.js"></script>
<script>
const hostname = window.location.hostname;
const segments = hostname.split('.');
const firstSegment = segments[0];
let server = '';
if(firstSegment === 'dev'){
server = '//dev.'
} else if (firstSegment === 'staging'){
server = '//staging.'
} else {
server = '//'
}
var script = document.createElement("script")
script.setAttribute("src", server + `start.ai-pro.org/snippets/com.global.vuzo.js`)
document.head.appendChild(script)
</script>
<script>
window.onload = function() {
displayVuzo();
displayGooglePlay();
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!