mod-build 3.6.49-beta.3 → 3.6.49-beta.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-build",
3
- "version": "3.6.49-beta.3",
3
+ "version": "3.6.49-beta.4",
4
4
  "description": "Share components for S3 sites.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -256,7 +256,7 @@
256
256
  }
257
257
  };
258
258
 
259
- if (!window.privacyPreferencesDetected) {
259
+ if (window.Modalytics && !window.Modalytics.privacyPreferencesDetected) {
260
260
  heapUserTracking.init();
261
261
  }
262
262
  })();
@@ -1,4 +1,4 @@
1
- if (!window.privacyPreferencesDetected) {
1
+ if (window.Modalytics && !window.Modalytics.privacyPreferencesDetected) {
2
2
  window.heap=window.heap||[],heap.load=function(e,t){window.heap.appid=e,window.heap.config=t=t||{};var r=t.forceSSL||"https:"===document.location.protocol,a=document.createElement("script");a.type="text/javascript",a.async=!0,a.src=(r?"https:":"http:")+"//cdn.heapanalytics.com/js/heap-"+e+".js";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(a,n);for(var o=function(e){return function(){heap.push([e].concat(Array.prototype.slice.call(arguments,0)))}},p=["addEventProperties","addUserProperties","clearEventProperties","identify","resetIdentity","removeEventProperty","setEventProperties","track","unsetEventProperty"],c=0;c<p.length;c++)heap[p[c]]=o(p[c])};
3
3
 
4
4
  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'));
@@ -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.privacyPreferencesDetected) {
23
+ if (window.Modalytics && !window.Modalytics.privacyPreferencesDetected) {
24
24
  heap.addUserProperties(window._vis_data);
25
25
  }
26
26
  }
@@ -1,19 +0,0 @@
1
- window.privacyPreferencesDetected = false;
2
- let hasGpcParam = false;
3
- let gpcPluginEnabled = false;
4
-
5
- function checkForPrivacyParam() {
6
- const urlParams = new URLSearchParams(window.location.search);
7
- return urlParams.has('gpc') && urlParams.get('gpc') === 'yes';
8
- }
9
-
10
- function detectPrivacyPreferences() {
11
- return hasGpcParam && gpcPluginEnabled;
12
- }
13
-
14
- document.addEventListener('DOMContentLoaded', () => {
15
- hasGpcParam = checkForPrivacyParam();
16
- gpcPluginEnabled = typeof navigator.globalPrivacyControl !== 'undefined' && navigator.globalPrivacyControl === 1;
17
-
18
- window.privacyPreferencesDetected = detectPrivacyPreferences();
19
- });