2016-12-14 00:26:26 -05:00
|
|
|
/* global ace */
|
|
|
|
|
2018-03-09 15:18:59 -05:00
|
|
|
import $ from 'jquery';
|
|
|
|
|
2018-02-27 16:47:34 -05:00
|
|
|
export default () => {
|
|
|
|
const editor = ace.edit('editor');
|
2016-06-24 14:26:11 -04:00
|
|
|
|
2018-02-27 16:47:34 -05:00
|
|
|
$('.snippet-form-holder form').on('submit', () => {
|
|
|
|
$('.snippet-file-content').val(editor.getValue());
|
2016-06-24 14:26:11 -04:00
|
|
|
});
|
2018-02-27 16:47:34 -05:00
|
|
|
};
|