added "include note" widget to text notes, WIP

This commit is contained in:
zadam
2019-12-29 23:46:40 +01:00
parent 64f32ba38f
commit 2f711a12f8
10 changed files with 246 additions and 6 deletions

View File

@@ -61,7 +61,7 @@ class NoteDetailText {
else {
window.open(src, '_blank');
}
})
});
}
async render() {
@@ -94,6 +94,11 @@ class NoteDetailText {
}
});
if (glob.isDev) {
await import('../../libraries/ckeditor/inspector.js');
CKEditorInspector.attach(this.textEditor);
}
this.onNoteChange(() => this.ctx.noteChanged());
}
}