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

snippet_bundle.js « snippet « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce0fd3f6ff8cf3a965ca87e26c4b550e253c6ab7 (plain)
1
2
3
4
5
6
7
8
9
/* global ace */

export default () => {
  const editor = ace.edit('editor');

  $('.snippet-form-holder form').on('submit', () => {
    $('.snippet-file-content').val(editor.getValue());
  });
};