我正在努力定制 Aloha 编辑器。我想删除可编辑内容周围的黄色边框:
在 Github 上,同样的问题被问到,给出的答案是,
当用户移动鼠标时,突出显示插件会显示用户可编辑的区域。如果您不想使用它,请不要包含。或者做你自己的高亮插件...
但是,我不相信我包含了高亮插件。我的 Aloha 设置如下所示:
Aloha.settings = {
locale: 'en',
plugins: {
format: {
config: [ 'b', 'i', 'sub', 'sup', 'p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6' ],
editables : {
'#title' : [ ] // no formatting allowed for title
}
}
},
sidebar: {
disabled: true
}
};
有什么建议么?