-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclustaar.html
43 lines (41 loc) · 1.09 KB
/
clustaar.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script>
window.clustaarSettings = {
bot_id: '5eb84f5e01aea30646d026bb',
bot_token: 'eyJ2YWx1ZSI6IjljQVdTU0xBNk5BbGtWRzdJVUtxNWU5UEx1MTNhWF9GT1Y5MWh0Sk1JVUkiLCJzdWJqZWN0Ijp7InR5cGUiOiJib3QiLCJpZCI6IjVlYjg0ZjVlMDFhZWEzMDY0NmQwMjZiYiJ9fQ==',
};
var callWebchat = function () {
var w = window;
var ic = w.Clustaar;
if (typeof ic === 'function') {
ic('reattach_activator');
ic('update', clustaarSettings)
} else {
var d = document;
var i = function () {
i.c(arguments)
};
i.q = [];
i.c = function (args) {
i.q.push(args)
};
w.Clustaar = i;
var l = function () {
var s = d.createElement('script');
s.type = 'text/javascript';
s.async = !0;
s.src = 'https://webchat.clustaar.io/assets/scripts/webchat.js';
var x = d.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x)
}
l();
}
};
callWebchat()
</script>
</body>
</html>