我正在尝试更改特定字段的paragraphFormat项目。 在field.yaml中,我设置了课程:
beyond_future_title_1:
label: Title
size: small
span: full
type: richeditor
toolbarButtons: paragraphFormat
tab: 'Beyond the Future'
cssClass: f-h1
但是当我尝试更改特定类的选项时,它将不起作用
+function ($) { "use strict";
$(document).render(function() {
if ($.FroalaEditor) {
$('.f-h1').froalaEditor('.field-richeditor' ,{
paragraphFormat: {
H1: 'Heading 1'
}
})
}
})
}(window.jQuery);