CKEditor标题图片(图片2插件)

时间:2016-09-03 10:15:41

标签: ckeditor

我在ckeditor中使用带标题的图片插件。我可以在哪里看到带图像的标题。此figcaption(图像标题)默认具有属性contenteditable="true"。我可以从image2配置中删除此属性,还是可以将此contenteditable设置为false。因为在我的创作者上我默认显示图片标题,所以我不允许用户更改默认标题。

config.extraPlugins = 'image2';

我试图找到它的配置但dint得到任何配置。

1 个答案:

答案 0 :(得分:1)

小部件中的可编辑区域(Image2插件使用小部件插入图像)由editables property中的widget definition定义。 Image2插件具有此property fixed,因此无法通过配置选项进行更改。

但是,可以使用widgetDefiniton event替换它,如下所示:

editor.on( 'widgetDefinition', function( evt ) {
    var widget = evt.data;

    if ( widget.name == 'image' ) {
        widget.editables = null;
    }
} );