如何删除ckeditor image2中的图像大小调整手柄(enhancedimage)

时间:2014-07-10 05:08:54

标签: ckeditor

我已设法删除允许调整图像大小的对话框(在ckeditor image2插件中)。有没有办法阻止用户使用角手柄调整图像大小?

编辑:

Reinmar是对的。并在config.js中使用:

CKEDITOR.editorConfig = function( config ) { ... config.disallowedContent = 'img[width,height]'; }

这也将以功能方式从对话框中删除高度和宽度选项。

1 个答案:

答案 0 :(得分:1)

如果您完全删除widthheight属性,则表示满意:

CKEDITOR.replace( 'editor1', {
    disallowedContent: 'img[width,height]'
} );

您可以详细了解disallowed content hereAdvanced Content Filter here

如果你只想隐藏缩放器但是在图像对话框中保留输入并在代码中保留输入,那么我相信你需要通过CSS隐藏它。