From 3e3a2102b553991ae87e687c98c8b7b8a2e54124 Mon Sep 17 00:00:00 2001 From: ludelanier Date: Sat, 25 Nov 2023 17:15:33 +0100 Subject: [PATCH] fix somes issues --- Sources/justMUSIC/web/index.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Sources/justMUSIC/web/index.html b/Sources/justMUSIC/web/index.html index 8353358..c385a14 100644 --- a/Sources/justMUSIC/web/index.html +++ b/Sources/justMUSIC/web/index.html @@ -54,6 +54,14 @@ } }); }); + + window.addEventListener("load",function() { + // Set a timeout... + setTimeout(function(){ + // Hide the address bar! + window.scrollTo(0, 1); + }, 0); +});