вопрос
Кто может подсказать? Как вызвать длешный редактор FroalaEditor? С этим кодом выводится он, но не такой как на dle.
Редактор
$(function() {
$('div#froala-editor').froalaEditor()
.on('froalaEditor.contentChanged', function (e, editor) {
$('#preview').html(editor.html.get());
})
});
Редактор
$(function() {
$('div#froala-editor').froalaEditor()
.on('froalaEditor.contentChanged', function (e, editor) {
$('#preview').html(editor.html.get());
})
});
<div id="froala-editor" >
Текстовый блок.
</div>
<script>
$(function() {
$('div#froala-editor').froalaEditor({
charCounterCount: false,
toolbarButtonsXS: ['bold', 'italic', 'underline', 'strikeThrough', 'paragraphFormat', 'align', '-', 'formatOL', 'formatUL', 'indent', 'outdent', 'insertLink', 'dleleech', '-', 'dlespoiler', 'dlehide', 'undo', 'redo'],
toolbarButtonsSM: ['bold', 'italic', 'underline', 'strikeThrough', 'paragraphFormat', 'align', '-', 'formatOL', 'formatUL', 'indent', 'outdent', 'insertLink', 'dleleech', '-', 'dlespoiler', 'dlehide', 'undo', 'redo'],
toolbarButtonsMD: ['bold', 'italic', 'underline', 'strikeThrough', 'paragraphFormat', 'align', '-', 'formatOL', 'formatUL', 'indent', 'outdent', 'insertLink', 'dleleech', '-', 'dlespoiler', 'dlehide', 'undo', 'redo'],
toolbarButtons: ['bold', 'italic', 'underline', 'strikeThrough', 'paragraphFormat', 'align', '-', 'formatOL', 'formatUL', 'indent', 'outdent', 'insertLink', 'dleleech', '-', 'dlespoiler', 'dlehide', 'undo', 'redo'],
});
});
</script>