Files
opensem/resources/views/load/editor.blade.php
2021-03-22 00:47:44 +01:00

16 lines
252 B
PHP

@if(!defined('LOAD_EDITOR'))
@include('load.editor.tinymce')
@push('js')
<script>
function initEditor(selector) {
var selector = '.editor';
$(selector).tinymce({});
}
</script>
@endpush
@php(define('LOAD_EDITOR', true))
@endif