gitlab-org--gitlab-foss/app/assets/javascripts/snippet/snippet_bundle.js

16 lines
382 B
JavaScript
Raw Normal View History

/* eslint-disable func-names, space-before-function-paren, prefer-arrow-callback, no-var, quotes, padded-blocks, max-len */
/* global ace */
/*= require_tree . */
(function() {
$(function() {
var editor = ace.edit("editor");
$(".snippet-form-holder form").on('submit', function() {
$(".snippet-file-content").val(editor.getValue());
});
});
}).call(this);