diff options
Diffstat (limited to 'assets/js/loading.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; - } -} |
