-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
22 lines (22 loc) · 751 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<body>
<!--
The html file is used when you are in development mode. The compiled extensions are automatically
added to this file by Webpack when you are developing using npm run dev.
-->
<script>
window.watsonAssistantChatOptions = {
integrationID: "37414c5c-8d93-4252-a773-eaddeae6ae28",
region: "us-south",
serviceInstanceID: "8a8ea449-4fb6-453e-811a-bae320dc62b3",
onLoad: function(instance) { instance.render(); },
serviceDeskFactory: window.WebChatServiceDeskFactory
};
setTimeout(function(){
const t=document.createElement('script');
t.src="https://web-chat.global.assistant.watson.appdomain.cloud/loadWatsonAssistantChat.js";
document.head.appendChild(t);
});
</script>
</body>
</html>