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: 083dc23c796d2422f2a7a89cef12c20cdda5d734 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable */
/*= require_tree . */

(function() {
  $(function() {
    var editor = ace.edit("editor")

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

}).call(this);