Fugit, in quas qui a.
let jodit = null;
if ($('#jodit-editor').length && !$('#jodit-editor').hasClass('jodit-initialized')) {
$('#jodit-editor').addClass('jodit-initialized');
jodit = Jodit.make('#jodit-editor', {
height: 200,
placeholder: '{{ __("Type Content") }}',
buttons: [
'bold', 'italic', 'underline', '|',
'ul', 'ol', '|',
'outdent', 'indent', '|',
'font', 'fontsize', 'brush', 'paragraph', '|',
'align', 'undo', 'redo', '|',
'link', 'image', 'video', 'table', '|',
'hr', 'eraser', 'fullsize'
],
uploader: {
insertImageAsBase64URI: true
}
});
// Sync Jodit content with hidden textarea
jodit.events.on('change', () => {
$('#cause_content').val(jodit.getEditorValue());
});
// Set initial content if exists
const initialContent = $('#cause_content').val();
if (initialContent && initialContent.trim() !== '') {
jodit.setEditorValue(initialContent);
}
}
Comments (0)