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 c6e4325afc
commit 689f3c9647
1 changed files with 0 additions and 8 deletions

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>