@everymatrix/casino-game-thumbnail 1.9.2 → 1.9.4

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": "@everymatrix/casino-game-thumbnail",
3
- "version": "1.9.2",
3
+ "version": "1.9.4",
4
4
  "main": "dist/casino-game-thumbnail.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "c6cac429dd6c7cee4304007d5a41a9fed7e78217"
38
+ "gitHead": "df3f55302c5fa4d0dfe067221da2d04f64582156"
39
39
  }
@@ -197,14 +197,14 @@
197
197
 
198
198
  // Case mobile
199
199
  if (isMobile(userAgent) && integratedgameframemobile == "true") {
200
- window.postMessage({ type: 'OpenGameFrame', gameId, gamefunmode, gamepagemodalurl, isMobile: isMobile(userAgent), source: 'GameThumbnail' }, window.location.href);
200
+ window.postMessage({ type: 'OpenGameFrame', gameId, gamefunmode, gamepagemodalurl, isMobile: isMobile(userAgent), source: 'GameThumbnail', identifier: 'Lobby' }, window.location.href);
201
201
  } else if(isMobile(userAgent) && integratedgameframemobile == "false") {
202
202
  window.postMessage({ type: 'ShowGameModal', gameId, isMobile: isMobile(userAgent) }, window.location.href);
203
203
  }
204
204
 
205
205
  // Case desktop
206
206
  if (!isMobile(userAgent) && integratedgameframedesktop == "true") {
207
- window.postMessage({ type: 'OpenGameFrame', gameId, gamefunmode, gamepagemodalurl, isMobile: isMobile(userAgent) }, window.location.href)
207
+ window.postMessage({ type: 'OpenGameFrame', gameId, gamefunmode, gamepagemodalurl, isMobile: isMobile(userAgent), identifier: 'Lobby' }, window.location.href)
208
208
  } else if(!isMobile(userAgent) && integratedgameframedesktop == "false") {
209
209
  window.postMessage({ type: 'ShowGameModal', gameId, isMobile: isMobile(userAgent) }, window.location.href);
210
210
  }