aboutsummaryrefslogtreecommitdiffstats
path: root/app/loading.html
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2018-10-21 17:48:15 +0800
committerGitHub <noreply@github.com>2018-10-21 17:48:15 +0800
commit6d09f60bbfe5ee737ff7a138260cc33e3db5ca46 (patch)
treea0642d45087aca57ad3e06bd93dac6bfc042f233 /app/loading.html
parentb0c649a4e3c68293e08e764bbf4d53939df88e2d (diff)
downloadtangerine-wallet-browser-6d09f60bbfe5ee737ff7a138260cc33e3db5ca46.tar.gz
tangerine-wallet-browser-6d09f60bbfe5ee737ff7a138260cc33e3db5ca46.tar.zst
tangerine-wallet-browser-6d09f60bbfe5ee737ff7a138260cc33e3db5ca46.zip
ens-ipfs - refactor for readability (#5568)
* ens-ipfs - refactor for readability * ens-ipfs - use official ipfs gateway for better performance * lint - remove unused code * ens-ipfs - support path and search * lint - gotta love that linter * ens-ipfs - improve loading page formatting * ens-ipfs - loading - redirect to 404 after 1 min timeout * ens-ipfs - destructure for cleaner code
Diffstat (limited to 'app/loading.html')
-rw-r--r--app/loading.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/app/loading.html b/app/loading.html
index aef5d9607..71403a5ac 100644
--- a/app/loading.html
+++ b/app/loading.html
@@ -1,5 +1,9 @@
-<html>
+<!DOCTYPE html>
+<html lang="en">
<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>MetaMask Loading</title>
<style>
#div-logo {
@@ -31,5 +35,11 @@
<div id="div-logo">
<img id="logo" src="./images/loginglogo.svg">
</div>
+ <script type="text/javascript">
+ // redirect to 404 after one minute
+ setTimeout(() => {
+ location.href = './404.html'
+ }, 60000)
+ </script>
</body>
</html>