使用MoxieManager时,从TinyMCE的“插入链接”对话框中删除“浏览”按钮

时间:2014-01-31 10:13:24

标签: tinymce

我已正确配置MoxieManager与TinyMCE集成,一切正常。但我想从“插入链接”对话框中删除“浏览”按钮(打开MoxieManager对话框)。

因此,从下面的屏幕截图中,绿色应该保留,但红色应该保留。

enter image description here

2 个答案:

答案 0 :(得分:7)

自我回答,但我想这对其他人也有帮助。

每个TinyMCE插件通常都有一个位于plugins / [plugin_name] /plugin.js(或plugin.min.js)下的JS文件,具体取决于您是否使用缩小版本。这些插件通常调用editor.windowManager.open(),传递配置选项的对象以应用于新打开的窗口。

此对象可以具有的值之一是body,它是要在对话框中显示的项目数组。每个项目都有一些可供选择的选项,包括type属性。

在下面的示例中,我使用了plugins / link / plugin.js来显示用文件浏览器按钮替换(默认)文本字段所需的差异 - 使用没有浏览按钮的标准文本字段。

win = editor.windowManager.open({
        // ...
        body: [
            {
                name: 'href',
                type: 'filepicker',
                filetype: 'file',
                // ...
            },
// More code follows here

新版本:

win = editor.windowManager.open({
        // ...
        body: [
            {
                name: 'href',
                type: 'textbox',
                filetype: 'file',
                // ...
            },
// More code follows here

答案 1 :(得分:1)

或者,如果您不想更改源代码..说您正在使用缩小版等,可以通过CSS禁用它:

div[aria-label="Insert link"] .mce-btn.mce-open {
  display: none;
}