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

pull/519/head
Dan Collins 2 weeks ago
parent bbee33afb2
commit f764089a0b

@ -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