@everymatrix/casino-slider 1.19.5 → 1.20.0
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-slider",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.20.0",
|
4
4
|
"main": "dist/casino-slider.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": "cce8ceef88ab812968208af95253b28b94fc43d2"
|
39
39
|
}
|
package/src/CasinoSlider.svelte
CHANGED
@@ -128,7 +128,7 @@
|
|
128
128
|
|
129
129
|
const getSubGroups = (item:string, index?:number, trigger?:string):void => {
|
130
130
|
if(location == 'secondaryMenu' && endpoint && datasource && lang && item.id) {
|
131
|
-
let url:URL = new URL(`${endpoint}/casino/groups/${datasource}/${item.id}/subGroups?language=${lang}`);
|
131
|
+
let url:URL = new URL(`${endpoint}/v1/casino/groups/${datasource}/${item.id}/subGroups?language=${lang}`);
|
132
132
|
fetch(url.href)
|
133
133
|
.then((res:any) => res.json())
|
134
134
|
.then((data:any) => {
|