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: dcee17453b8bd1dc84f255131abebc35f53b98e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* global ace */

import $ from 'jquery';

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

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