We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 906ec24 commit c7fbab0Copy full SHA for c7fbab0
1 file changed
app/app.vue
@@ -75,7 +75,7 @@ function handleGlobalKeyup() {
75
/* A hack to get light dismiss to work in safari because it does not support closedby="any" yet */
76
// https://codepen.io/paramagicdev/pen/gbYompq
77
// see: https://github.com/npmx-dev/npmx.dev/pull/522#discussion_r2749978022
78
-function handleModalLightDismiss(e: any) {
+function handleModalLightDismiss(e: MouseEvent) {
79
const modal = document.querySelector<HTMLDialogElement>('dialog:modal')
80
if (modal && modal.open && !e.composedPath().includes(modal)) {
81
modal.close()
0 commit comments