@pendo/agent 2.315.1 → 2.316.0
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 +12 -1
- package/dist/pendo.module.js +443 -375
- package/dist/pendo.module.min.js +12 -12
- package/dist/replay.worker.min.js +1 -1
- package/dist/servers.json +7 -7
- package/package.json +1 -1
package/dist/dom.esm.js
CHANGED
|
@@ -6300,6 +6300,17 @@ var ConfigReader = (function () {
|
|
|
6300
6300
|
*/
|
|
6301
6301
|
addOption('dataHost', [SNIPPET_SRC, PENDO_CONFIG_SRC]);
|
|
6302
6302
|
addOption('disableAutoInitialize');
|
|
6303
|
+
/**
|
|
6304
|
+
* If set to `true` the web SDK will wait for the host application to be both loaded and visible before
|
|
6305
|
+
* starting the initialization process.
|
|
6306
|
+
*
|
|
6307
|
+
* @access public
|
|
6308
|
+
* @category Config/Core
|
|
6309
|
+
* @name initializeWhenVisible
|
|
6310
|
+
* @default false
|
|
6311
|
+
* @type {boolean}
|
|
6312
|
+
*/
|
|
6313
|
+
addOption('initializeWhenVisible', [SNIPPET_SRC, PENDO_CONFIG_SRC], false);
|
|
6303
6314
|
/**
|
|
6304
6315
|
* Although the name refers to cookies, if set to `true` the web SDK will not persist any data in local
|
|
6305
6316
|
* storage or cookies and will rely only on memory.
|
|
@@ -7462,7 +7473,7 @@ function applyMatrix2dRect(matrix2d, rect) {
|
|
|
7462
7473
|
return transformedRect;
|
|
7463
7474
|
}
|
|
7464
7475
|
|
|
7465
|
-
var VERSION = '2.
|
|
7476
|
+
var VERSION = '2.316.0_';
|
|
7466
7477
|
|
|
7467
7478
|
var decodeURIComponent = _.isFunction(window.decodeURIComponent) ? window.decodeURIComponent : _.identity;
|
|
7468
7479
|
|