@ombori/ga-messaging
Advanced tools
Comparing version 2.65.9 to 2.65.10
@@ -6,2 +6,13 @@ # Change Log | ||
## [2.65.10](https://github.com/ombori/gridapp/compare/v2.65.9...v2.65.10) (2021-06-09) | ||
### Bug Fixes | ||
* foward gridSocket to all child iframes ([f27c355](https://github.com/ombori/gridapp/commit/f27c3555014e7d06d9d91c90939d7f64ca540cd4)) | ||
## [2.65.9](https://github.com/ombori/gridapp/compare/v2.65.8...v2.65.9) (2021-06-09) | ||
@@ -8,0 +19,0 @@ |
@@ -29,4 +29,4 @@ var __assign = (this && this.__assign) || function () { | ||
// @ts-ignore | ||
var gridsocket = window.gridsocket; // A socket injected by web-runtime (tizen/android/web) | ||
if (gridsocket) { | ||
var gridSocket = window.gridSocket; // A socket injected by web-runtime (tizen/android/web) | ||
if (gridSocket) { | ||
console.log("Grid-messaging: a grid socket detected, using it"); | ||
@@ -37,3 +37,3 @@ } | ||
} | ||
socket = gridsocket || new WebSocket(ADDRESS); | ||
socket = gridSocket || new WebSocket(ADDRESS); | ||
socket.onmessage = onmessage; | ||
@@ -40,0 +40,0 @@ socket.onclose = onclose; |
{ | ||
"name": "@ombori/ga-messaging", | ||
"version": "2.65.9", | ||
"version": "2.65.10", | ||
"main": "dist/index.js", | ||
@@ -16,3 +16,3 @@ "license": "UNLICENSED", | ||
}, | ||
"gitHead": "88b52a3b4ca180ebfded70c5ad0af84ee8afd333" | ||
"gitHead": "a25d0e2efafa8459a83e86ffe31bae133989bad7" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15649