anki/ts/editor/MathjaxHandle.svelte

18 lines
508 B
Svelte
Raw Normal View History

2021-08-04 22:01:03 +02:00
<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import HandleBackground from "./HandleBackground.svelte";
import HandleSelection from "./HandleSelection.svelte";
export let activeImage: HTMLImageElement | null = null;
export let container: HTMLElement;
2021-08-04 22:01:03 +02:00
</script>
<HandleSelection {container} {activeImage}>
{#if activeImage}
<HandleBackground />
{/if}
</HandleSelection>