debian-mirror-gitlab/app/assets/javascripts/blob/utils.js

18 lines
347 B
JavaScript
Raw Normal View History

2020-04-08 14:13:33 +05:30
import Editor from '~/editor/editor_lite';
export function initEditorLite({ el, blobPath, blobContent }) {
if (!el) {
throw new Error(`"el" parameter is required to initialize Editor`);
}
2020-05-24 23:13:21 +05:30
const editor = new Editor();
editor.createInstance({
el,
blobPath,
blobContent,
});
2020-04-08 14:13:33 +05:30
return editor;
}
export default () => ({});