Reputation: 1
how to disable left and right arrow keys of Photoswipe ?
I tried the following
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);
Upvotes: 0
Views: 102
Reputation: 286
// Disable left and right arrow keys
window.addEventListener("keydown", function(e) {
if (["ArrowLeft", "ArrowRight"].includes(e.code)) {
e.preventDefault();
}
}, false);
Assuming that the photoswipe is active currently on the web page.
Upvotes: 0