mirror of
https://github.com/ankitects/anki.git
synced 2026-01-15 06:49:03 -05:00
20 lines
606 B
Svelte
20 lines
606 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 HandleSelection from "./HandleSelection.svelte";
|
|
import HandleBackground from "./HandleBackground.svelte";
|
|
import HandleControl from "./HandleControl.svelte";
|
|
|
|
export let activeImage: HTMLImageElement | null = null;
|
|
export let container: HTMLElement;
|
|
</script>
|
|
|
|
<HandleSelection {container} {activeImage}>
|
|
{#if activeImage}
|
|
<HandleBackground />
|
|
|
|
<HandleControl active={false} />
|
|
{/if}
|
|
</HandleSelection>
|