@pendo/agent 2.309.0 → 2.309.1
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/dom.esm.js +1 -1
- package/dist/pendo.module.js +4 -4
- package/dist/pendo.module.min.js +2 -2
- package/dist/servers.json +7 -7
- package/package.json +1 -1
package/dist/dom.esm.js
CHANGED
|
@@ -7428,7 +7428,7 @@ function applyMatrix2dRect(matrix2d, rect) {
|
|
|
7428
7428
|
return transformedRect;
|
|
7429
7429
|
}
|
|
7430
7430
|
|
|
7431
|
-
var VERSION = '2.309.
|
|
7431
|
+
var VERSION = '2.309.1_';
|
|
7432
7432
|
|
|
7433
7433
|
var decodeURIComponent = _.isFunction(window.decodeURIComponent) ? window.decodeURIComponent : _.identity;
|
|
7434
7434
|
|
package/dist/pendo.module.js
CHANGED
|
@@ -3912,8 +3912,8 @@ let SERVER = '';
|
|
|
3912
3912
|
let ASSET_HOST = '';
|
|
3913
3913
|
let ASSET_PATH = '';
|
|
3914
3914
|
let DESIGNER_SERVER = '';
|
|
3915
|
-
let VERSION = '2.309.
|
|
3916
|
-
let PACKAGE_VERSION = '2.309.
|
|
3915
|
+
let VERSION = '2.309.1_';
|
|
3916
|
+
let PACKAGE_VERSION = '2.309.1';
|
|
3917
3917
|
let LOADER = 'xhr';
|
|
3918
3918
|
/* eslint-enable agent-eslint-rules/no-gulp-env-references */
|
|
3919
3919
|
/**
|
|
@@ -34640,7 +34640,7 @@ const IFrameMonitor = (function () {
|
|
|
34640
34640
|
(frame.document.head || frame.document.body).appendChild(script);
|
|
34641
34641
|
}
|
|
34642
34642
|
}
|
|
34643
|
-
function
|
|
34643
|
+
function handleLoaded(frame, agentUrl) {
|
|
34644
34644
|
frame.pendo.iframeWaiting = false;
|
|
34645
34645
|
appendScriptTagToFrame(frame, agentUrl);
|
|
34646
34646
|
}
|
|
@@ -34662,7 +34662,7 @@ const IFrameMonitor = (function () {
|
|
|
34662
34662
|
}
|
|
34663
34663
|
else {
|
|
34664
34664
|
frame.pendo = { iframeWaiting: true }; // Add empty pendo object just so we don't try to add pendo to the frame twice while we wait
|
|
34665
|
-
frame.
|
|
34665
|
+
frame.addEventListener('load', pendoGlobal._.partial(handleLoaded, frame, agentUrl));
|
|
34666
34666
|
}
|
|
34667
34667
|
}
|
|
34668
34668
|
function checkForFrames() {
|