summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/index.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/index.js b/templates/index.js
index b7b3b58..3a1ef8f 100644
--- a/templates/index.js
+++ b/templates/index.js
@@ -61,3 +61,10 @@ async function showMarkers() {
}
showMarkers()
+
+async function showFavicon() {
+ res = await fetch('/favicon.ico');
+ res = await res.json();
+}
+
+showFavicon()