mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Fix MathJax overlay after rebase
This commit is contained in:
parent
ed4621de9e
commit
241d5cdd13
1 changed files with 10 additions and 4 deletions
|
@ -15,8 +15,14 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
let updateSelection: () => void;
|
let updateSelection: () => void;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<HandleSelection {container} {activeImage} offsetX={2} offsetY={2} bind:updateSelection>
|
{#if activeImage}
|
||||||
{#if activeImage}
|
<HandleSelection
|
||||||
|
image={activeImage}
|
||||||
|
{container}
|
||||||
|
offsetX={2}
|
||||||
|
offsetY={2}
|
||||||
|
bind:updateSelection
|
||||||
|
>
|
||||||
<HandleBackground />
|
<HandleBackground />
|
||||||
|
|
||||||
<div
|
<div
|
||||||
|
@ -28,8 +34,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<HandleControl />
|
<HandleControl />
|
||||||
{/if}
|
</HandleSelection>
|
||||||
</HandleSelection>
|
{/if}
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
div {
|
div {
|
||||||
|
|
Loading…
Reference in a new issue