Skip to content

Commit

Permalink
temporarily fixes a bug on ios where the popover would not close when…
Browse files Browse the repository at this point in the history
… clicking/touching the background
  • Loading branch information
jamband committed Aug 16, 2024
1 parent d21f5ca commit 1851970
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pages/popover/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,9 @@ const title = "popover";
}
});
});

// https://bugs.webkit.org/show_bug.cgi?id=267688
document.body.addEventListener("pointerdown", () => {
//
});
</script>

0 comments on commit 1851970

Please sign in to comment.