@meetelise/chat 1.20.73 → 1.20.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/demo/index.html +24 -0
- package/public/dist/index.js +87 -87
- package/src/MEChat.ts +21 -13
- package/src/WebComponent/Scheduler/tour-scheduler.ts +23 -0
- package/src/WebComponent/actions/email-us-window.ts +9 -1
- package/src/WebComponent/actions/text-us-window.ts +5 -1
- package/src/gtm.ts +17 -0
package/package.json
CHANGED
package/public/demo/index.html
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en-GB">
|
|
3
3
|
<head>
|
|
4
|
+
<!-- Google Tag Manager -->
|
|
5
|
+
<script>
|
|
6
|
+
(function (w, d, s, l, i) {
|
|
7
|
+
w[l] = w[l] || [];
|
|
8
|
+
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
|
|
9
|
+
var f = d.getElementsByTagName(s)[0],
|
|
10
|
+
j = d.createElement(s),
|
|
11
|
+
dl = l != "dataLayer" ? "&l=" + l : "";
|
|
12
|
+
j.async = true;
|
|
13
|
+
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
|
|
14
|
+
f.parentNode.insertBefore(j, f);
|
|
15
|
+
})(window, document, "script", "dataLayer", "GTM-PDVW5Q8");
|
|
16
|
+
</script>
|
|
17
|
+
<!-- End Google Tag Manager -->
|
|
4
18
|
<meta charset="utf-8" />
|
|
5
19
|
<meta
|
|
6
20
|
name="viewport"
|
|
@@ -90,6 +104,16 @@
|
|
|
90
104
|
</style>
|
|
91
105
|
</head>
|
|
92
106
|
<body>
|
|
107
|
+
<!-- Google Tag Manager (noscript) -->
|
|
108
|
+
<noscript
|
|
109
|
+
><iframe
|
|
110
|
+
src="https://www.googletagmanager.com/ns.html?id=GTM-PDVW5Q8"
|
|
111
|
+
height="0"
|
|
112
|
+
width="0"
|
|
113
|
+
style="display: none; visibility: hidden"
|
|
114
|
+
></iframe
|
|
115
|
+
></noscript>
|
|
116
|
+
<!-- End Google Tag Manager (noscript) -->
|
|
93
117
|
<!-- Webpack dev server will serve the bundle, index.js, at the path '/' -->
|
|
94
118
|
<script type="module" async>
|
|
95
119
|
import MEChat from "/index.js";
|