Update advanced-config.blade.php

This commit is contained in:
Julian Prieber 2022-11-18 13:37:14 +01:00
parent b90a2245dc
commit f00032804e
1 changed files with 5 additions and 0 deletions

View File

@ -27,3 +27,8 @@ var editor = ace.edit("editor");
editor.setTheme("ace/theme/xcode");
editor.getSession().setMode("ace/mode/javascript");
</script>
<script>
editor.getSession().on('change', function(e) {
$('textarea[name=AdvancedConfig]').val(editor.getSession().getValue());
});
</script>