@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 CHANGED
@@ -7428,7 +7428,7 @@ function applyMatrix2dRect(matrix2d, rect) {
7428
7428
  return transformedRect;
7429
7429
  }
7430
7430
 
7431
- var VERSION = '2.309.0_';
7431
+ var VERSION = '2.309.1_';
7432
7432
 
7433
7433
  var decodeURIComponent = _.isFunction(window.decodeURIComponent) ? window.decodeURIComponent : _.identity;
7434
7434
 
@@ -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.0_';
3916
- let PACKAGE_VERSION = '2.309.0';
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 handleContentLoaded(frame, agentUrl) {
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.document.addEventListener('DOMContentLoaded', pendoGlobal._.partial(handleContentLoaded, frame, agentUrl));
34665
+ frame.addEventListener('load', pendoGlobal._.partial(handleLoaded, frame, agentUrl));
34666
34666
  }
34667
34667
  }
34668
34668
  function checkForFrames() {