1
0
Fork 0
mirror of synced 2024-07-16 11:45:47 +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 visible = false
} }
function handleKey(e) {
if (visible && e.key === "Escape") {
hide()
}
}
</script> </script>
<svelte:window on:keydown={handleKey} />
{#if visible} {#if visible}
<Portal> <Portal>
<section class:fillWidth class="drawer" transition:slide> <section class:fillWidth class="drawer" transition:slide>