如何从Aloha Editor javascript插件中删除可编辑内容的黄色边框?

时间:2013-05-11 18:11:08

标签: jquery aloha-editor

我正在努力定制Aloha编辑器。我想删除可编辑内容周围的黄色边框:

enter image description here

在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
    }
};

有什么建议吗?

2 个答案:

答案 0 :(得分:3)

如果您确定已禁用HighlightEditables插件,那么您可能正面临此bug。根据{{​​1}}的建议,您可以尝试从CSS中删除issue opener

!important

<强>更新

作为对@ Marcin关注的回复,请确保您<{3}} {{1}的.aloha-editable-active, .aloha-editable-active[contenteditable=true]:focus { outline: #80B5F2 solid 5px !important; } 属性 <{1}} common/highlighteditables } tag:

data-aloha-plugins

以下是相应的Aloha

<script>

答案 1 :(得分:1)

您应该不加载负责突出显示可编辑内容的插件。它的名称是“common / highlightitables”,您可以在设置中自定义要与阵列一起使用的插件:Aloha.settings.plugins.load。现在,您要包含它,因为您没有指定插件列表并且已加载默认插件列表。