mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 21:51:43 +00:00
Merge branch 'rails' of 0xacab.org:sutty/sutty into blazer
This commit is contained in:
commit
03d2914ec6
1 changed files with 4 additions and 2 deletions
|
@ -137,8 +137,10 @@ export function setupAuxiliaryToolbar(editor: Editor): void {
|
||||||
"click",
|
"click",
|
||||||
(event) => {
|
(event) => {
|
||||||
const files = editor.toolbar.auxiliary.multimedia.fileEl.files;
|
const files = editor.toolbar.auxiliary.multimedia.fileEl.files;
|
||||||
if (!files || !files.length)
|
if (!files || !files.length) {
|
||||||
throw new Error("no hay archivos para subir");
|
console.info("no hay archivos para subir");
|
||||||
|
return;
|
||||||
|
}
|
||||||
const file = files[0];
|
const file = files[0];
|
||||||
|
|
||||||
const selectedEl = editor.contentEl.querySelector<HTMLElement>(
|
const selectedEl = editor.contentEl.querySelector<HTMLElement>(
|
||||||
|
|
Loading…
Reference in a new issue