mod-build 3.7.5 → 3.7.6
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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
if (window.Modalytics
|
|
1
|
+
if (window.Modalytics) {
|
|
2
2
|
var heapIsDevEnv = window.location.host.match(new RegExp('(' + ['qa.', 'staging.', 'localhost', '.local', '[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}'].join('|') + ')', 'i'));
|
|
3
3
|
// dev env id "3986615799"
|
|
4
4
|
if (!heapIsDevEnv) {
|
|
@@ -20,7 +20,7 @@ _vis_opt_queue.push(function() {
|
|
|
20
20
|
// Use the _vis_data object created above to fetch the data,
|
|
21
21
|
// key of the object is the Test ID and the value is Variation Name
|
|
22
22
|
if (_vis_counter) {
|
|
23
|
-
if (window.Modalytics &&
|
|
23
|
+
if (window.Modalytics && window.heap && window.heap.appid) {
|
|
24
24
|
heap.addUserProperties(window._vis_data);
|
|
25
25
|
}
|
|
26
26
|
}
|