@pendo/agent 2.298.0 → 2.298.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
@@ -7314,7 +7314,7 @@ function getScreenPosition(element) {
7314
7314
  };
7315
7315
  }
7316
7316
 
7317
- var VERSION = '2.298.0_';
7317
+ var VERSION = '2.298.1_';
7318
7318
 
7319
7319
  var decodeURIComponent = _.isFunction(window.decodeURIComponent) ? window.decodeURIComponent : _.identity;
7320
7320
 
@@ -3904,8 +3904,8 @@ let SERVER = '';
3904
3904
  let ASSET_HOST = '';
3905
3905
  let ASSET_PATH = '';
3906
3906
  let DESIGNER_SERVER = '';
3907
- let VERSION = '2.298.0_';
3908
- let PACKAGE_VERSION = '2.298.0';
3907
+ let VERSION = '2.298.1_';
3908
+ let PACKAGE_VERSION = '2.298.1';
3909
3909
  let LOADER = 'xhr';
3910
3910
  /* eslint-enable agent-eslint-rules/no-gulp-env-references */
3911
3911
  /**
@@ -24256,6 +24256,9 @@ class GuideCache {
24256
24256
  request.onsuccess = (event) => {
24257
24257
  const db = event.target.result;
24258
24258
  this.db = db;
24259
+ db.onclose = () => {
24260
+ this.db = null;
24261
+ };
24259
24262
  deferred.resolve(db);
24260
24263
  };
24261
24264
  request.onupgradeneeded = (event) => {