@everymatrix/casino-game-page 1.17.2 → 1.17.3
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-page",
|
3
|
-
"version": "1.17.
|
3
|
+
"version": "1.17.3",
|
4
4
|
"main": "dist/casino-game-page.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": "
|
38
|
+
"gitHead": "89baba5648f1fb1c1ff4fbe9369eb83965480ce7"
|
39
39
|
}
|
@@ -125,7 +125,7 @@
|
|
125
125
|
}
|
126
126
|
|
127
127
|
const createGameURL = (gameId:string, modal?:boolean):void => {
|
128
|
-
let url:URL = new URL(`${endpoint}/casino/games/${gameId}`);
|
128
|
+
let url:URL = new URL(`${endpoint}/v1/casino/games/${gameId}`);
|
129
129
|
|
130
130
|
url.searchParams.append('language', lang);
|
131
131
|
url.searchParams.append('expand', 'vendor');
|
@@ -280,7 +280,7 @@
|
|
280
280
|
}
|
281
281
|
|
282
282
|
const openGameFrame = (gameId:string, gameFunMode:boolean):void => {
|
283
|
-
let url:URL = new URL(`${endpoint}/casino/games/${gameId}`);
|
283
|
+
let url:URL = new URL(`${endpoint}/v1/casino/games/${gameId}`);
|
284
284
|
url.searchParams.append('language', lang);
|
285
285
|
fetch(url.href)
|
286
286
|
.then((res:any) => res.json())
|
@@ -894,7 +894,7 @@
|
|
894
894
|
fill: var(--emfe-w-button-typography, var(--emfe-w-color-white, #FFFFFF));
|
895
895
|
}
|
896
896
|
p {
|
897
|
-
color: var(--emfe-w-casino-typography, var(--emfe-w-color-
|
897
|
+
color: var(--emfe-w-casino-typography, var(--emfe-w-color-contrast, #FFFFFF));
|
898
898
|
}
|
899
899
|
#IframeContainer {
|
900
900
|
height:100%;
|