删除CKEditor Mathjax插件中的OR Customize Link

时间:2016-05-06 05:10:01

标签: javascript ckeditor mathjax

我正在尝试删除/编辑CKEditor中的链接,经过http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-mathJaxClass,无法找到允许自定义/编辑链接的任何属性。

MatchJax Plugin for CKEditor

2 个答案:

答案 0 :(得分:2)

编辑mathjax.js下的对话框文件ckeditor/plugins/mathjax/dialogs/,然后删除文档元素。

这是您需要删除或注释掉的部分:

{
    id: 'documentation',
    type: 'html',
    html:
        '<div style="width:100%;text-align:right;margin:-8px 0 10px">' +
            '<a class="cke_mathjax_doc" href="' + lang.docUrl + '" target="_black" style="cursor:pointer;color:#00B2CE;text-decoration:underline">' +
                lang.docLabel +
            '</a>' +
        '</div>'
},

在测试前删除浏览器缓存。

答案 1 :(得分:1)

该链接具有类cke_mathjax_doc,因此您可以在css中设置display:none或使用jQuery更改它。它很脏但它应该有用。