Updating Splash Screen Logo/Delay

This commit is contained in:
Dev-JamesR
2019-11-14 18:02:27 -08:00
parent 2406516a01
commit 578da94f6d
3 changed files with 6 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 MiB

File diff suppressed because one or more lines are too long

View File

@@ -67,13 +67,16 @@
<script>
var loading_screen = pleaseWait({
logo: "assets/images/logo.png",
logo: "assets/images/logo-glitch.gif",
backgroundColor: '#000000',
loadingHtml: "<div class='spinner'><div class='bounce bounce1'></div><div class='bounce bounce2'></div><div class='bounce bounce3'></div></div><div class='loadingText'>Starting the node and loading app, please wait...</div>"
});
$(document).on("onGethReady", function() {
loading_screen.finish();
setTimeout(() => {
loading_screen.finish();
}, 4000);
});
$(window).on("beforeunload", function() {