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

17 lines
283 B
JavaScript
Raw Normal View History

2020-04-08 14:13:33 +05:30
import Editor from '~/editor/editor_lite';
2020-10-24 23:57:45 +05:30
export function initEditorLite({ el, ...args }) {
const editor = new Editor({
scrollbar: {
alwaysConsumeMouseWheel: false,
},
});
2020-11-24 15:15:51 +05:30
return editor.createInstance({
2020-05-24 23:13:21 +05:30
el,
2020-10-24 23:57:45 +05:30
...args,
2020-05-24 23:13:21 +05:30
});
2020-04-08 14:13:33 +05:30
}
export default () => ({});