summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/blob/utils.js
blob: bbc061dd36ec980d707f8a51ef2ccffd56dce515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import Editor from '~/editor/source_editor';

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

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

export default () => ({});