diff --git a/webmusic.js b/webmusic.js index 03e57a3..014496a 100644 --- a/webmusic.js +++ b/webmusic.js @@ -50,6 +50,9 @@ window.onkeyup = function (event) { else if (event.key === "ArrowRight") { sound.seek(sound.seek()+10); } + else if (event.key === "Escape") { + window.location = '../'; + } };