я верю, что если вы удалите параметры toolbarInline и toolbarVisibleWithoutSelection, вы будете в порядке.
Кроме того, существует функция selector.froalaEditor ('toolbar.show')
<script>
$(function () {
$('textarea#froala-editor').froalaEditor({
toolbarInline: false,
toolbarButtons: [ 'bold', 'italic', 'underline', 'strikeThrough', 'subscript', 'superscript', '-', 'paragraphFormat', 'align', 'formatOL', 'formatUL'],
toolbarVisibleWithoutSelection: true
})
});
</script>
Он просто появляется в текстовом поле без панели инструментов.
javascript,jquery,html,froala,