我试图为我的笔记本电脑安装ckeditor gem。它在某种程度上对我不起作用。所以我下载了ckeditor并在我的项目中使用它。
有谁知道如何自定义ckeditor?我想知道在哪里可以编辑ckeditor的按钮?
例如,我想删除图片上传和闪光按钮。此外,我希望在悬停按钮时打开最后一行选项。
答案 0 :(得分:0)
通过以下代码,您可以添加或删除按钮。
CKEDITOR.replace( 'textarea_id', {
toolbar: [
{ name: 'document', items: [ 'Source', '-', 'NewPage', 'Preview', '-', 'Templates' ] }, // Defines toolbar group with name (used to create voice label) and items in 3 subgroups.
[ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ], // Defines toolbar group without name.
'/', // Line break - next group will be placed in new line.
{ name: 'basicstyles', items: [ 'Bold', 'Italic' ] }
]
});
您必须在插件中进行一些修改。想要更改ckeditor / plugins /中的“剪切”选项,您将拥有clipboard.js
文件。对于cut
按钮,您必须将代码从onclick()
更改为mouseover()
。