12345678910111213141516171819202122 |
- (function() {
- var pluginName = 'lightbox';
- CKEDITOR.plugins.add(pluginName, {
- lang : 'ru,en,pl',
- init : function(editor) {
- editor.addCommand(pluginName,new CKEDITOR.dialogCommand( 'lightbox' ));
- CKEDITOR.dialog.add(pluginName, this.path + 'dialogs/lightbox.js' );
- editor.ui.addButton('lightbox', {
- label : 'Изображение с эффектом LightBox',
- command : pluginName,
- icon : this.path + 'icon.png',
- toolbar: 'insert,2'
- });
- }
- });
- })();
|