This commit is contained in:
Dario48true 2024-09-23 14:41:44 +02:00
parent 6af7abe041
commit 70b64b2251
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
document.getElementById("path").addEventListener("keydown", function(e) { if (e.code === "Enter") { e.preventDefault(); window.location.href = window.location.origin + e.target.value } })
document.getElementById("path").addEventListener("keydown", function(e) { if (e.key === "Enter") { e.preventDefault(); window.location.href = window.location.origin + e.target.value } })