mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 20:06:08 +01:00
split out library loader
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import utils from "./utils.js";
|
||||
import libraryLoader from "./library_loader.js";
|
||||
import noteDetailService from './note_detail.js';
|
||||
|
||||
const $noteDetailText = $('#note-detail-text');
|
||||
@@ -7,7 +7,7 @@ let textEditor = null;
|
||||
|
||||
async function show() {
|
||||
if (!textEditor) {
|
||||
await utils.requireLibrary(utils.CKEDITOR);
|
||||
await libraryLoader.requireLibrary(libraryLoader.CKEDITOR);
|
||||
|
||||
textEditor = await BalloonEditor.create($noteDetailText[0], {});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user