16 lines
252 B
PHP
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
|