From 4eaa0b9555206dcb09c31157e4793792639ebcce Mon Sep 17 00:00:00 2001
From: "Phyks (Lucas Verney)"
Date: Tue, 8 Oct 2019 15:16:21 +0200
Subject: [PATCH] Smarter ordering of HTTP requests to BRouter API, no longer
hammering the server
---
index.html | 67 ++++++++++++++++++++++++++++++++++++------------------
1 file changed, 45 insertions(+), 22 deletions(-)
diff --git a/index.html b/index.html
index fcc075f..16b4a5b 100644
--- a/index.html
+++ b/index.html
@@ -47,6 +47,7 @@
flex: auto;
text-align: left;
}
+
.back-top {
flex: auto;
text-align: right;
@@ -56,16 +57,20 @@
display: inline-block;
text-align: left;
}
+
input[type="text"], textarea {
width: 100%;
display: inline-block;
}
+
textarea {
min-height: 300px;
}
+
#step2 {
display: none;
}
+
.center {
text-align: center;
}
@@ -75,6 +80,16 @@
color: red;
}
+ #status {
+ font-weight: bold;
+ color: blue;
+ text-align: center;
+ }
+
+ #error {
+ text-align: center;
+ }
+
.footnote {
font-size: 0.8em;
margin-top: -10px;
@@ -117,6 +132,7 @@
+
@@ -140,7 +156,7 @@