diff options
| -rw-r--r-- | directory/css/main.css | 2 | ||||
| -rw-r--r-- | directory/games/index.html | 2 | ||||
| -rw-r--r-- | directory/games/js/main.js | 2 | ||||
| -rw-r--r-- | directory/index.html | 2 | ||||
| -rw-r--r-- | directory/js/main.js | 2 |
5 files changed, 8 insertions, 2 deletions
diff --git a/directory/css/main.css b/directory/css/main.css index e7725c4..2c869f7 100644 --- a/directory/css/main.css +++ b/directory/css/main.css @@ -7,6 +7,7 @@ table { } /* LOADING ANIMATION */ +/* .loader-wrapper { width: 100%; height: 100%; @@ -475,3 +476,4 @@ table { opacity: 0; } } +*/
\ No newline at end of file diff --git a/directory/games/index.html b/directory/games/index.html index 8168bce..7638b7b 100644 --- a/directory/games/index.html +++ b/directory/games/index.html @@ -77,6 +77,7 @@ </div> <!-- Loading Animation --> + <!-- <div class="loader-wrapper"> <div class="loader"> <span class="">Label:</span> @@ -86,5 +87,6 @@ <span class="ascii-spinner-4">\</span> </div> </div> + --> </body> </html>
\ No newline at end of file diff --git a/directory/games/js/main.js b/directory/games/js/main.js index 8469316..94f58d0 100644 --- a/directory/games/js/main.js +++ b/directory/games/js/main.js @@ -1,5 +1,5 @@ $(document).ready(function () { - $('.loader-wrapper').fadeOut("slow"); /*FadeOut after page loaded*/ + // $('.loader-wrapper').fadeOut("slow"); /*FadeOut after page loaded*/ console.log("You actually checked it out, enjoy!"); });
\ No newline at end of file diff --git a/directory/index.html b/directory/index.html index d3895e9..587dac8 100644 --- a/directory/index.html +++ b/directory/index.html @@ -46,6 +46,7 @@ </div> <!-- Loading Animation --> + <!-- <div class="loader-wrapper"> <div class="loader"> <span class="">Label:</span> @@ -55,5 +56,6 @@ <span class="ascii-spinner-4">\</span> </div> </div> + --> </body> </html>
\ No newline at end of file diff --git a/directory/js/main.js b/directory/js/main.js index 2036068..c2c904f 100644 --- a/directory/js/main.js +++ b/directory/js/main.js @@ -1,5 +1,5 @@ $(document).ready(function () { - $('.loader-wrapper').fadeOut("slow"); /*FadeOut after page loaded*/ + // $('.loader-wrapper').fadeOut("slow"); /*FadeOut after page loaded*/ console.log("Thanks for using my directory, check out the games!"); });
\ No newline at end of file |