@pendo/agent 2.318.0 → 2.320.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 +12686 -19697
- package/dist/pendo.module.min.js +8 -106
- package/dist/servers.json +7 -7
- package/package.json +1 -1
package/dist/dom.esm.js
CHANGED
|
@@ -6975,6 +6975,17 @@ var ConfigReader = (function () {
|
|
|
6975
6975
|
* @type {boolean}
|
|
6976
6976
|
*/
|
|
6977
6977
|
addOption('enableCrossOriginIsolation', [SNIPPET_SRC, PENDO_CONFIG_SRC], false);
|
|
6978
|
+
/**
|
|
6979
|
+
* If `true`, the web SDK will use the environment's designer host as the target origin
|
|
6980
|
+
* for the postMessage to the designer instead of `*`.
|
|
6981
|
+
*
|
|
6982
|
+
* @access public
|
|
6983
|
+
* @category Config/Core
|
|
6984
|
+
* @name secureDesignerConnect
|
|
6985
|
+
* @default false
|
|
6986
|
+
* @type {boolean}
|
|
6987
|
+
*/
|
|
6988
|
+
addOption('secureDesignerConnect', [SNIPPET_SRC, PENDO_CONFIG_SRC], false);
|
|
6978
6989
|
// Adopt
|
|
6979
6990
|
addOption('adoptHost');
|
|
6980
6991
|
addOption('adoptAnalyticsForwarding');
|
|
@@ -7473,7 +7484,7 @@ function applyMatrix2dRect(matrix2d, rect) {
|
|
|
7473
7484
|
return transformedRect;
|
|
7474
7485
|
}
|
|
7475
7486
|
|
|
7476
|
-
var VERSION = '2.
|
|
7487
|
+
var VERSION = '2.320.0_';
|
|
7477
7488
|
|
|
7478
7489
|
var decodeURIComponent = _.isFunction(window.decodeURIComponent) ? window.decodeURIComponent : _.identity;
|
|
7479
7490
|
|