使用自定义工具栏在CKEditor中安装youtube插件

时间:2014-07-21 14:35:24

标签: youtube ckeditor

我想安装CKEditor的youtube plugin。 安装没问题,效果很好。

但我还要配置自己的工具栏。例如:

<div id="editable" contenteditable="true" class="ckeditor">
  my data
</div>
<script>
  // Turn off automatic editor creation first.
  CKEDITOR.disableAutoInline = true;

  CKEDITOR.inline( 'editable', {
    toolbar: [
      { name: 'insert', items: [ 'Link', 'Unlink', 'Image', 'Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'youtubePlugin' ] },

    ]
} );
</script>

但是youtube图标无法显示。我尝试了其他名称,例如&#39; youtube&#39;,&#39; Youtube&#39;,没有任何效果。 而且我在源代码中找不到插件的其他名称。

你知道怎么做吗?

感谢。

埃里克

1 个答案:

答案 0 :(得分:2)

好的,我发现了问题。我的假期是受益者:)

我必须设置插件的好名字。这里是“Youtube”而不是“youtube”。 它现在适用于所有插件。

埃里克