@everymatrix/casino-lobby 0.0.283 → 0.0.286

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/documentation.md CHANGED
@@ -162,6 +162,7 @@ Full example (`not logged in user`):
162
162
  |clockformat|no|The clock format for the game page - more details here - https://momentjs.com/docs/#/displaying/format/. Default: 'LTS'|
163
163
  |visiblegames|no|Provides the option to set the number of games that is to be displayed on `Casino Lobby` for each category. The default is set to 10 games.
164
164
  |integratedgameframe|no|Changes the way that the game iframe opens on mobile devices - instead of opening the iframe in a new tab, it opens it inside the the widget, thus giving the client control over the styling and giving him the option to display banners alongside the game. Default: 'false'|
165
+ |gamepagemodalurl|no|When opening the game page on mobile, if the `gamepagemodalurl` is set to 'true', the game page will open in a modal with a unique id, adding to the URL the game id. Default: 'false'|
165
166
 
166
167
  ## Releases
167
168
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/casino-lobby",
3
- "version": "0.0.283",
3
+ "version": "0.0.286",
4
4
  "main": "dist/casino-lobby.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "e19481532307b6ad83a24fda9f9b5ef7cc2a3b4c"
39
+ "gitHead": "34a92e6b2196b6bd4e523795acca4f2e87762571"
40
40
  }
@@ -52,6 +52,7 @@
52
52
  export let playrandomgame:string = 'false';
53
53
  export let visiblegames:string = '10';
54
54
  export let integratedgameframe:string = 'false';
55
+ export let gamepagemodalurl:string = 'false';
55
56
 
56
57
  let endpointURL:string;
57
58
  let DS:string;
@@ -244,6 +245,7 @@
244
245
  {haspanicbutton}
245
246
  {livecasino}
246
247
  {currency}
248
+ {gamepagemodalurl}
247
249
  ></casino-page>
248
250
  {#if gamemodal == 'true'}
249
251
  <casino-modal
@@ -254,6 +256,7 @@
254
256
  lang={language}
255
257
  {clientstyling}
256
258
  {clientstylingurl}
259
+ {gamepagemodalurl}
257
260
  ><casino-game-page
258
261
  session={session}
259
262
  userid={userid}