Guest User

Untitled

a guest
Jul 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. CKEDITOR.plugins.add('fancyimage', {
  2. requires: ['fancydialog'],
  3. init: function(editor) {
  4. editor.addCommand('upload', new CKEDITOR.dialogCommand('upload'));
  5. editor.ui.addButton('fancyimage', {
  6. label: 'Добавить фотки',
  7. command: 'upload',
  8. icon: this.path + 'images/button.jpg'
  9. });
  10.  
  11. CKEDITOR.dialog.add('upload', this.path + 'dialogs/upload.js' );
  12. }
  13. });
Add Comment
Please, Sign In to add comment