Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « blob « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8043c0bbc078857b2f4e346d4bcaca1b2c6b446c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Editor from '~/editor/editor_lite';

export function initEditorLite({ el, ...args }) {
  const editor = new Editor({
    scrollbar: {
      alwaysConsumeMouseWheel: false,
    },
  });

  return editor.createInstance({
    el,
    ...args,
  });
}

export default () => ({});