summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/snippet/snippet_bundle.js
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);