11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
/* global ace */
|
|
|
|
import $ from 'jquery';
|
|
|
|
export default () => {
|
|
const editor = ace.edit('editor');
|
|
|
|
$('.snippet-form-holder form').on('submit', () => {
|
|
$('.snippet-file-content').val(editor.getValue());
|
|
});
|
|
};
|