how to disable left and right arrow keys of Photoswipe ?
I tried the following
- keyboard: false,
and this code block
window.addEventListener("keydown", function(e) {
if (["ArrowLeft", "ArrowRight"].includes(e.code) &&
(e.target === pswpBtnLeft || e.target === pswpBtnRight)) {
e.preventDefault();
e.stopPropagation();
}
}, false);
Assuming that the photoswipe is active currently on the web page.