@everymatrix/player-account-self-exclusion 1.2.0 → 1.2.2

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/player-account-self-exclusion",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "main": "dist/player-account-self-exclusion",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "3800c3e93fdc948c5bc48101acce6cd81ce65706"
40
+ "gitHead": "02dbae5b4d167acdb57c72905b756343a318870a"
41
41
  }
@@ -13,7 +13,7 @@
13
13
  export let operator:string = 'Everymatrix';
14
14
  export let clientstyling:string = '';
15
15
  export let clientstylingurl:string = '';
16
- export let translationUrl:string = '';
16
+ export let translationurl:string = '';
17
17
 
18
18
  let customStylingContainer:HTMLElement;
19
19
  let userAgent:string = window.navigator.userAgent;
@@ -29,7 +29,7 @@
29
29
  let maxDate:string;
30
30
 
31
31
  const setTranslationUrl = ():void => {
32
- let url:string = translationUrl;
32
+ let url:string = translationurl;
33
33
 
34
34
  fetch(url).then((res:any) => res.json())
35
35
  .then((res) => {
@@ -129,7 +129,7 @@
129
129
  $: lang && initialLoad();
130
130
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
131
131
  $: clientstyling && customStylingContainer && setClientStyling();
132
- $: translationUrl && setTranslationUrl();
132
+ $: translationurl && setTranslationUrl();
133
133
  </script>
134
134
 
135
135
  <div bind:this={customStylingContainer}>