kc-sdk 7.0.391-rc → 7.0.392-rc

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kc-sdk",
3
- "version": "7.0.391-rc",
3
+ "version": "7.0.392-rc",
4
4
  "description": "Knowledge Components SDK",
5
5
  "exports": {
6
6
  ".": "./src/assets/sdk/kc-sdk.js",
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var kcSdkVersion = '7.0.391';
3
+ var kcSdkVersion = '7.0.392';
4
4
 
5
5
  var kcSdk = function kcSdk() {
6
6
  // locals
@@ -235,8 +235,8 @@ var kcSdk = function kcSdk() {
235
235
  function openKcSentinel(url) {
236
236
  if (!service.kcWindow.reference || !windowExists(service.kcWindow) || !service.kcWindowIsListening) {
237
237
  kcSentinelWindowName = 'kc-sdk-launched-instance-sentinel'
238
- service.kcWindow.reference = window.open(url, kcSentinelWindowName, kcWindowParams);
239
- // service.kcWindow.name = kcSentinelWindowName;
238
+ service.kcWindow.reference = window.open(url, kcWindowName, kcWindowParams);
239
+ service.kcWindow.name = kcWindowName;
240
240
  service.kcWindow.opened = true;
241
241
  service.kcWindow.reference.focus();
242
242
  } else {