plugin.js 502 B

12345678910111213141516171819202122
  1. (function() {
  2. var pluginName = 'lightbox';
  3. CKEDITOR.plugins.add(pluginName, {
  4. lang : 'ru,en,pl',
  5. init : function(editor) {
  6. editor.addCommand(pluginName,new CKEDITOR.dialogCommand( 'lightbox' ));
  7. CKEDITOR.dialog.add(pluginName, this.path + 'dialogs/lightbox.js' );
  8. editor.ui.addButton('lightbox', {
  9. label : 'Изображение с эффектом LightBox',
  10. command : pluginName,
  11. icon : this.path + 'icon.png',
  12. toolbar: 'insert,2'
  13. });
  14. }
  15. });
  16. })();