We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bf66018 + 1aaf2a3 commit de59257Copy full SHA for de59257
public/scripts/home/controllers/home/view.html
@@ -46,11 +46,15 @@
46
<!-- START Botmaker WebChat-->
47
<script>
48
(function () {
49
- let js = document.createElement('script');
50
- js.type = 'text/javascript';
51
- js.async = 1;
52
- js.src = 'https://go.botmaker.com/rest/webchat/p/HLENDRUDLS/init.js';
53
- document.body.appendChild(js);
+ let readyExecuted = false;
+
+ if (!readyExecuted) {
+ let js = document.createElement('script');
+ js.type = 'text/javascript';
54
+ js.async = 1;
55
+ js.src = 'https://go.botmaker.com/rest/webchat/p/HLENDRUDLS/init.js';
56
+ document.body.appendChild(js);
57
+ }
58
})();
59
</script>
60
<!-- END Botmaker WebChat-->
0 commit comments