@everymatrix/casino-categories-slider 0.0.405 → 0.0.407
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-categories-slider",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.407",
|
|
4
4
|
"main": "dist/casino-categories-slider.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": "3c5fcc43855582b1e4b7592c9b7ac4c3824d4bc7"
|
|
40
40
|
}
|
|
@@ -212,11 +212,6 @@
|
|
|
212
212
|
|
|
213
213
|
return hasErrors;
|
|
214
214
|
}
|
|
215
|
-
|
|
216
|
-
const checkIfLoaded = ():void => {
|
|
217
|
-
isLoading = !favoritesLoaded && !mostPlayedLoaded && !lastPlayedLoaded && !categoriesLoaded;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
215
|
const setDevice = ():void => {
|
|
221
216
|
let device = getDevice(userAgent)
|
|
222
217
|
|
|
@@ -343,7 +338,7 @@
|
|
|
343
338
|
$: session && favorites && !isLoading && addFavoritesCategory();
|
|
344
339
|
$: session && endpoint && !isLoading && lastplayed && addLastPlayedCategory();
|
|
345
340
|
$: session && endpoint && !isLoading && userid && mostplayed && addMostPlayedCategory();
|
|
346
|
-
$: !isLoading && activecategory && setActiveCategory();
|
|
341
|
+
$: !isLoading && activecategory && (session ? lastPlayedAdded && mostPlayedAdded && favoritesAdded : true) && setActiveCategory();
|
|
347
342
|
$: clientstyling && setClientStyling();
|
|
348
343
|
$: clientstylingurl && setClientStylingURL();
|
|
349
344
|
</script>
|