diff options
| author | Mhykol <mchaeldonald62@pm.me> | 2024-06-16 23:18:55 -0400 |
|---|---|---|
| committer | Mhykol <mchaeldonald62@pm.me> | 2024-06-16 23:18:55 -0400 |
| commit | 53a161267b942db7495aacd0b0602e74c5c6c5f8 (patch) | |
| tree | a2f39a65c6f7f3c2b2283b7231601f97e5415bb7 /assets/js | |
| parent | 341def811c198bf55c8720cb95d0334b6442560c (diff) | |
Stop tracking loading.js
Diffstat (limited to 'assets/js')
| -rw-r--r-- | assets/js/loading.js | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/assets/js/loading.js b/assets/js/loading.js deleted file mode 100644 index 8fff0f3..0000000 --- a/assets/js/loading.js +++ /dev/null @@ -1,16 +0,0 @@ -class Loading { - constructor() { - this.object = { - loadingScreen: document.getElementById('loading') - } - } - - Stop() { - this.object.loadingScreen.style.opacity = 0; - this.object.loadingScreen.style.zIndex = -9999; - } - Start() { - this.object.loadingScreen.style.opacity = 1; - this.object.loadingScreen.style.zIndex = 9999; - } -} |
