@everymatrix/casino-most-played-section 1.34.0 → 1.34.2

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-most-played-section",
3
- "version": "1.34.0",
3
+ "version": "1.34.2",
4
4
  "main": "index.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": "c9ad96fd45d67455a049f61462d8b4523a78ba54"
38
+ "gitHead": "99004a0501ea8fb9219aac803a986e470f556838"
39
39
  }
@@ -22,7 +22,6 @@
22
22
  export let showgamename:string = '';
23
23
  export let visiblegames:string;
24
24
  export let favorites:string = '';
25
- export let lastPlayedEmpty:string = '';
26
25
  export let translationurl:string = '';
27
26
  export let casinomygames:string = 'false';
28
27
  export let mostplayedperiod:string = 'Last30Days';
@@ -31,7 +30,8 @@
31
30
 
32
31
 
33
32
  let userAgent:any = window.navigator.userAgent;
34
-
33
+ let lobbyView:boolean = false;
34
+
35
35
  const setTranslationUrl = ():void => {
36
36
  let url:string = translationurl;
37
37
 
@@ -122,7 +122,6 @@
122
122
  rounds: mostplayedrounds
123
123
  }).then((res:any) => {
124
124
  isLoading = false;
125
- window.postMessage({ type: 'GetFavoredGame' }, window.location.href);
126
125
  if (res.count > 0) {
127
126
  let promises:any = [];
128
127