1
0
Fork 0
mirror of synced 2024-07-07 23:35:49 +12:00

Remove infuriating behaviour of drawer closing on escape keypress

This commit is contained in:
Andrew Kingston 2021-12-07 13:58:34 +00:00
parent 3a7772643e
commit b1c2308b8b

View file

@ -21,16 +21,8 @@
}
visible = false
}
function handleKey(e) {
if (visible && e.key === "Escape") {
hide()
}
}
</script>
<svelte:window on:keydown={handleKey} />
{#if visible}
<Portal>
<section class:fillWidth class="drawer" transition:slide>