@blinkdotnew/sdk 2.3.7 → 2.3.9
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/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5928,6 +5928,9 @@ var BlinkAnalyticsImpl = class {
|
|
|
5928
5928
|
this.loadPersistedAttribution();
|
|
5929
5929
|
this.captureUTMParams();
|
|
5930
5930
|
this.loadQueue();
|
|
5931
|
+
if (typeof window !== "undefined" && window.__BLINK_ANALYTICS_PRESENT) {
|
|
5932
|
+
this.hasTrackedPageview = true;
|
|
5933
|
+
}
|
|
5931
5934
|
this.trackPageview();
|
|
5932
5935
|
this.setupRouteChangeListener();
|
|
5933
5936
|
this.setupUnloadListener();
|
package/dist/index.mjs
CHANGED
|
@@ -5926,6 +5926,9 @@ var BlinkAnalyticsImpl = class {
|
|
|
5926
5926
|
this.loadPersistedAttribution();
|
|
5927
5927
|
this.captureUTMParams();
|
|
5928
5928
|
this.loadQueue();
|
|
5929
|
+
if (typeof window !== "undefined" && window.__BLINK_ANALYTICS_PRESENT) {
|
|
5930
|
+
this.hasTrackedPageview = true;
|
|
5931
|
+
}
|
|
5929
5932
|
this.trackPageview();
|
|
5930
5933
|
this.setupRouteChangeListener();
|
|
5931
5934
|
this.setupUnloadListener();
|
package/package.json
CHANGED