frayerjj-frontend 0.5.2 → 0.5.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/loading.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frayerjj-frontend",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "My base frontend for various projects",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/loading.js CHANGED
@@ -36,13 +36,13 @@ export const loading = {
36
36
  if (loading.planetarium.shadowOffset == -45) {
37
37
  clearInterval(loading.interval);
38
38
  loading.planetarium.delay = 20;
39
- loading.interval = setInterval(loading.animation, loading.planetarium.delay);
39
+ loading.interval = setInterval(loading.planetarium.animation, loading.planetarium.delay);
40
40
  }
41
41
  // Speed Up for Corona Departure
42
42
  if (loading.planetarium.shadowOffset == -105) {
43
43
  clearInterval(loading.interval);
44
44
  loading.planetarium.delay = 10;
45
- loading.interval = setInterval(loading.animation, loading.planetarium.delay);
45
+ loading.interval = setInterval(loading.planetariumanimation, loading.planetarium.delay);
46
46
  }
47
47
  // Stop at Corona for Delay
48
48
  if (loading.planetarium.shadowOffset == -65 && loading.planetarium.wait > 0)