mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
18 lines
541 B
PHP
18 lines
541 B
PHP
<div>
|
|
<div
|
|
id="{{ $id }}"
|
|
{{ $attributes->merge(["class" => "mt-1 min-h-[400px] w-full"]) }}
|
|
class="ace-vito ace_dark"
|
|
></div>
|
|
<textarea id="textarea-{{ $id }}" name="{{ $name }}" style="display: none"></textarea>
|
|
<script>
|
|
if (window.initAceEditor) {
|
|
window.initAceEditor(@json($options));
|
|
} else {
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
window.initAceEditor(@json($options));
|
|
});
|
|
}
|
|
</script>
|
|
</div>
|