未显示Ckeditor幻灯片图标

时间:2015-02-18 12:41:55

标签: drupal-7 ckeditor slideshow ckfinder

我使用drupal 4.4.7和ckeditor,我想使用幻灯片,ckeditor的插件。我已经正确安装了ckeditor和ckfinder,我也安装了幻灯片并在配置页面上启用此插件,但是没有图标在CKeditor设置和#34; SHOWEDITOR外观"标签

有人能帮助我吗?

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题并找到了解决方案!

在“sites \ all \ modules \ ckeditor \ plugins \ slideshow \ plugin.js”中我添加了图标图片的路径(第91行):

// Create a toolbar button that executes the above command.
editor.ui.addButton('Slideshow', {
  // The text part of the button (if available) and tooptip.
  label: lang.insertSlideShow,
  command: 'slideshow',
  // The button placement in the toolbar (toolbar group name).
  toolbar: 'insert',
  icon: this.path + 'icons/slideshow.png'
});

按钮现在出现在配置CKEditor中:)