@everymatrix/casino-404 1.2.1 → 1.3.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-404",
3
- "version": "1.2.1",
3
+ "version": "1.3.0",
4
4
  "main": "dist/casino-404.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": "de8b2a024255bd2ed76c13501c5a6dc858263dcb"
39
+ "gitHead": "ac0e71f6ea97bb7428ee75f5667c1408cbdc3146"
40
40
  }
@@ -6,12 +6,12 @@
6
6
  export let lang:string = 'en';
7
7
  export let clientstyling:string = '';
8
8
  export let clientstylingurl:string = '';
9
- export let translationUrl:string = '';
9
+ export let translationurl:string = '';
10
10
 
11
11
  let customStylingContainer:HTMLElement;
12
12
 
13
13
  const setTranslationUrl = ():void => {
14
- let url:string = translationUrl;
14
+ let url:string = translationurl;
15
15
 
16
16
  fetch(url).then((res:any) => res.json())
17
17
  .then((res) => {
@@ -57,7 +57,7 @@
57
57
  $: lang && setActiveLanguage();
58
58
  $: clientstyling && customStylingContainer && setClientStyling();
59
59
  $: clientstylingurl && customStylingContainer && setClientStylingURL();
60
- $: translationUrl && setTranslationUrl();
60
+ $: translationurl && setTranslationUrl();
61
61
  </script>
62
62
 
63
63
  <div class="PageWrapper" bind:this={customStylingContainer}>