diff options
| -rw-r--r-- | templates/index.js | 7 |
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() |
