@everymatrix/casino-game-page 0.0.216 → 0.0.217
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": "0.0.
|
3
|
+
"version": "0.0.217",
|
4
4
|
"main": "dist/casino-game-page.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": "
|
39
|
+
"gitHead": "eece4cbb47122ec254298d89beb7fdb184124cdc"
|
40
40
|
}
|
@@ -256,7 +256,7 @@
|
|
256
256
|
// End section: keep aspect ratio for iframe on resize
|
257
257
|
const toggleLogin = () => {
|
258
258
|
if (loginevent) {
|
259
|
-
window.postMessage({ type: loginevent,
|
259
|
+
window.postMessage({ type: loginevent, transition: 'Login' }, window.location.href);
|
260
260
|
window.postMessage({ type: 'ModalClosed' }, window.location.href);
|
261
261
|
}
|
262
262
|
|
@@ -267,7 +267,7 @@
|
|
267
267
|
|
268
268
|
const toggleRegister = () => {
|
269
269
|
if (registerevent) {
|
270
|
-
window.postMessage({ type: registerevent,
|
270
|
+
window.postMessage({ type: registerevent, transition: 'Register' }, window.location.href);
|
271
271
|
window.postMessage({ type: 'ModalClosed' }, window.location.href);
|
272
272
|
}
|
273
273
|
|
package/src/translations.js
CHANGED
@@ -17,8 +17,8 @@ export const GamePageTranslations = {
|
|
17
17
|
deposit: 'Einzahlung',
|
18
18
|
playForFun: 'Play for fun',
|
19
19
|
playNow: 'Jetzt starten!',
|
20
|
-
break: '
|
21
|
-
breakButton: '24
|
20
|
+
break: 'Mach mal einen Tag Pause!',
|
21
|
+
breakButton: '24 Stunden Auszeit',
|
22
22
|
}
|
23
23
|
},
|
24
24
|
it: {
|