@pendo/agent 2.311.1 → 2.311.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 +1 -1
- package/dist/pendo.module.js +5 -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
|
@@ -7441,7 +7441,7 @@ function applyMatrix2dRect(matrix2d, rect) {
|
|
|
7441
7441
|
return transformedRect;
|
|
7442
7442
|
}
|
|
7443
7443
|
|
|
7444
|
-
var VERSION = '2.311.
|
|
7444
|
+
var VERSION = '2.311.2_';
|
|
7445
7445
|
|
|
7446
7446
|
var decodeURIComponent = _.isFunction(window.decodeURIComponent) ? window.decodeURIComponent : _.identity;
|
|
7447
7447
|
|
package/dist/pendo.module.js
CHANGED
|
@@ -3924,8 +3924,8 @@ let SERVER = '';
|
|
|
3924
3924
|
let ASSET_HOST = '';
|
|
3925
3925
|
let ASSET_PATH = '';
|
|
3926
3926
|
let DESIGNER_SERVER = '';
|
|
3927
|
-
let VERSION = '2.311.
|
|
3928
|
-
let PACKAGE_VERSION = '2.311.
|
|
3927
|
+
let VERSION = '2.311.2_';
|
|
3928
|
+
let PACKAGE_VERSION = '2.311.2';
|
|
3929
3929
|
let LOADER = 'xhr';
|
|
3930
3930
|
/* eslint-enable web-sdk-eslint-rules/no-gulp-env-references */
|
|
3931
3931
|
/**
|
|
@@ -58520,10 +58520,11 @@ const createElement = (tag, attrs = {}, parent = null) => {
|
|
|
58520
58520
|
return el;
|
|
58521
58521
|
};
|
|
58522
58522
|
const injectStyles = (pendoContainerId) => {
|
|
58523
|
-
|
|
58523
|
+
const styleId = `${STYLE_ID}-${pendoContainerId}`;
|
|
58524
|
+
if ($(styleId))
|
|
58524
58525
|
return;
|
|
58525
58526
|
createElement('style', {
|
|
58526
|
-
id:
|
|
58527
|
+
id: styleId,
|
|
58527
58528
|
textContent: `
|
|
58528
58529
|
#${pendoContainerId} {
|
|
58529
58530
|
display: none !important;
|