#486: Prevent arrow keys on the crop images from moving the play head

master
Dan Collins 4 months ago
parent 9e6e20cee2
commit 81a9cd7e7c

@ -144,6 +144,10 @@ document.addEventListener("keydown", (event) => {
return;
}
if (event.target.classList.contains("jcrop-widget") && (event.key === "ArrowLeft" || event.key === "ArrowRight")) {
return;
}
const videoElement = document.getElementById("video");
switch (event.key) {
case "ArrowLeft":

Loading…
Cancel
Save