f534dbb8e5
* Put PlainTextInput into its own directory * Create a directory for RichTextInput * Create editor-toolbar directory * Move PreviewButton into editor-toolbar * The time to refactor this is not quite yet here * Create tag-editor directory * Remove some of the uses of WithShortcut * Remove all uses of WithShortcut from editor package * Remove last uses of WithShortcut * Fix typo
21 lines
618 B
Svelte
21 lines
618 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import { createEventDispatcher, onMount } from "svelte";
|
|
import { registerShortcut } from "../lib/shortcuts";
|
|
import { preventDefault } from "../lib/events";
|
|
|
|
export let keyCombination: string;
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
onMount(() =>
|
|
registerShortcut((event: KeyboardEvent) => {
|
|
preventDefault(event);
|
|
dispatch("action", { originalEvent: event });
|
|
}, keyCombination),
|
|
);
|
|
</script>
|