mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Explicitly not support dropleft/dropright
We'll deal with it when we have a use case
This commit is contained in:
parent
18b838a173
commit
eb3bc08420
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
export let autoClose: boolean | "inside" | "outside" = true;
|
||||
|
||||
export let toggleOpen = true;
|
||||
export let drop: "down" | "up" | "left" | "right" = "down";
|
||||
export let drop: "down" | "up" = "down";
|
||||
|
||||
let placement: string;
|
||||
$: switch (drop) {
|
||||
|
|
Loading…
Reference in a new issue