1
0
Fork 0
mirror of synced 2024-09-30 09:07:25 +13:00

Hide some icons on mobile to avoid fullscreen mobile icon wrapping in rich text editor

This commit is contained in:
Andrew Kingston 2022-02-04 14:25:20 +00:00
parent e65ee63a9e
commit 26970971db
5 changed files with 9 additions and 1 deletions

View file

@ -8,6 +8,7 @@
export let height = null
export let id = null
export let fullScreenOffset = 0
export let easyMDEOptions = null
</script>
<div class:error>
@ -18,6 +19,7 @@
{id}
{fullScreenOffset}
{disabled}
{easyMDEOptions}
on:change
/>
</div>

View file

@ -12,6 +12,7 @@
export let height = null
export let id = null
export let fullScreenOffset = 0
export let easyMDEOptions = null
const dispatch = createEventDispatcher()
const onChange = e => {
@ -29,6 +30,7 @@
{height}
{id}
{fullScreenOffset}
{easyMDEOptions}
on:change={onChange}
/>
</Field>

View file

@ -8,6 +8,7 @@
export let id = null
export let fullScreenOffset = 0
export let disabled = false
export let easyMDEOptions
const dispatch = createEventDispatcher()
@ -53,6 +54,7 @@
easyMDEOptions={{
initialValue: value,
placeholder,
...easyMDEOptions,
}}
/>
{/key}

View file

@ -22,7 +22,6 @@
unorderedListStyle: "-",
maxHeight: scroll ? height : undefined,
minHeight: scroll ? undefined : height,
// hideIcons: ["fullscreen", "side-by-side"],
...easyMDEOptions,
})

View file

@ -61,6 +61,9 @@
{placeholder}
{height}
fullScreenOffset={offset}
easyMDEOptions={{
hideIcons: $context.device.mobile ? ["side-by-side", "guide"] : [],
}}
/>
{/if}
</Field>