@everymatrix/casino-tournaments-controller 0.0.266 → 0.0.268
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-tournaments-controller",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.268",
|
|
4
4
|
"main": "dist/casino-tournaments-controller.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": "c5b78b8fcf6dd4293a5b296177205963840e7289"
|
|
40
40
|
}
|
|
@@ -229,6 +229,10 @@
|
|
|
229
229
|
}
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
+
const setActiveLanguage = ():void => {
|
|
233
|
+
setLocale(lang);
|
|
234
|
+
}
|
|
235
|
+
|
|
232
236
|
const setActiveFilters = () => {
|
|
233
237
|
activeFilters = filters.split(',');
|
|
234
238
|
filtersLoaded = true;
|
|
@@ -262,6 +266,7 @@
|
|
|
262
266
|
$: session && setSession();
|
|
263
267
|
$: userid && setPlayerID();
|
|
264
268
|
$: filters && setActiveFilters();
|
|
269
|
+
$: lang && setActiveLanguage();
|
|
265
270
|
$: initialParameters = endpoint && numberoftournaments && showmorestep && lang;
|
|
266
271
|
$: readyToLoad = session ? initialParameters && session : initialParameters;
|
|
267
272
|
$: readyToLoad && initialLoad();
|