mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Allow pressing esc to close lightbox
This commit is contained in:
parent
663c1839bf
commit
2aff0fc6fe
1 changed files with 2 additions and 0 deletions
|
@ -166,6 +166,8 @@ onMounted(() => {
|
|||
lightbox.on("afterInit", () => {
|
||||
history.pushState(null, "", location.href);
|
||||
addEventListener("popstate", close);
|
||||
// This is a workaround. Not sure why, but when clicking to open, it doesn't move focus to the photoswipe. Preventing using esc to close. However when using keyboard to open it already focuses the lightbox fine.
|
||||
lightbox.pswp.element.focus();
|
||||
})
|
||||
lightbox.on("close", () => {
|
||||
removeEventListener("popstate", close);
|
||||
|
|
Loading…
Add table
Reference in a new issue