@pendo/agent 2.328.1 → 2.328.2
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 +11 -3
- package/dist/pendo.module.js +563 -464
- package/dist/pendo.module.min.js +106 -8
- package/dist/servers.json +7 -7
- package/package.json +1 -1
package/dist/dom.esm.js
CHANGED
|
@@ -6303,7 +6303,15 @@ var ConfigReader = (function () {
|
|
|
6303
6303
|
addOption('disableAutoInitialize');
|
|
6304
6304
|
/**
|
|
6305
6305
|
* If set to `true` the web SDK will wait for the host application to be both loaded and visible before
|
|
6306
|
-
* starting the initialization process.
|
|
6306
|
+
* starting the initialization process. Only the first call to `initialize` is honored while waiting
|
|
6307
|
+
* for visibility; subsequent calls are rejected and logged. This setting takes precedence over
|
|
6308
|
+
* `initializeImmediately`.
|
|
6309
|
+
*
|
|
6310
|
+
* This is a server-delivered setting and cannot be provided through the options passed to
|
|
6311
|
+
* `pendo.initialize`: the visibility gate runs before those options are read.
|
|
6312
|
+
*
|
|
6313
|
+
* This relies on the Page Visibility API. In browsers that do not support `document.visibilityState`,
|
|
6314
|
+
* enabling this option will defer initialization indefinitely.
|
|
6307
6315
|
*
|
|
6308
6316
|
* @access public
|
|
6309
6317
|
* @category Config/Core
|
|
@@ -6311,7 +6319,7 @@ var ConfigReader = (function () {
|
|
|
6311
6319
|
* @default false
|
|
6312
6320
|
* @type {boolean}
|
|
6313
6321
|
*/
|
|
6314
|
-
addOption('initializeWhenVisible', [
|
|
6322
|
+
addOption('initializeWhenVisible', [PENDO_CONFIG_SRC], false);
|
|
6315
6323
|
/**
|
|
6316
6324
|
* Although the name refers to cookies, if set to `true` the web SDK will not persist any data in local
|
|
6317
6325
|
* storage or cookies and will rely only on memory.
|
|
@@ -7497,7 +7505,7 @@ function applyMatrix2dRect(matrix2d, rect) {
|
|
|
7497
7505
|
return transformedRect;
|
|
7498
7506
|
}
|
|
7499
7507
|
|
|
7500
|
-
var VERSION = '2.328.
|
|
7508
|
+
var VERSION = '2.328.2_';
|
|
7501
7509
|
|
|
7502
7510
|
var decodeURIComponent = _.isFunction(window.decodeURIComponent) ? window.decodeURIComponent : _.identity;
|
|
7503
7511
|
|