diff options
author | RaindropsSys <raindrops@equestria.dev> | 2023-10-27 22:29:56 +0200 |
---|---|---|
committer | RaindropsSys <raindrops@equestria.dev> | 2023-10-27 22:29:56 +0200 |
commit | 4d4308c46d4f7801c657cc79d2243e1a81831334 (patch) | |
tree | a2e392e0af92b9a3ca3d1b5afb841640276e2294 /assets/js/shortcuts.js | |
parent | 9f9d66afebc59c6c265c4424f7b8fb36d8876541 (diff) | |
download | mist-4d4308c46d4f7801c657cc79d2243e1a81831334.tar.gz mist-4d4308c46d4f7801c657cc79d2243e1a81831334.tar.bz2 mist-4d4308c46d4f7801c657cc79d2243e1a81831334.zip |
Updated 32 files, added 279 files, deleted 3 files and renamed 14 files (automated)
Diffstat (limited to 'assets/js/shortcuts.js')
-rw-r--r-- | assets/js/shortcuts.js | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/assets/js/shortcuts.js b/assets/js/shortcuts.js new file mode 100644 index 0000000..2fa48ca --- /dev/null +++ b/assets/js/shortcuts.js @@ -0,0 +1,26 @@ +document.onkeydown = (e) => { + + if ((e.metaKey || e.ctrlKey) && e.key === ".") { + e.preventDefault(); + window.parent.stop(); + return false; + } + + if ((e.metaKey || e.ctrlKey) && e.key === "ArrowRight") { + e.preventDefault(); + window.parent.next(); + return false; + } + + if ((e.metaKey || e.ctrlKey) && e.key === "ArrowLeft") { + e.preventDefault(); + window.parent.previous(); + return false; + } + + if (e.key === " " && e.target.tagName !== "INPUT") { + e.preventDefault(); + window.parent.playPause(); + return false; + } +}
\ No newline at end of file |