Sha256: 1fee32f79794c8ae04217e87f8057edf91e4bf32c9d8bd55fcd71fce37aa5fd2
Contents?: true
Size: 761 Bytes
Versions: 5
Compression:
Stored size: 761 Bytes
Contents
/* * Plugin developed by CTRL+N. * * LICENCE: GPL, LGPL, MPL * NON-COMMERCIAL PLUGIN. * * Website: https://www.ctrplusn.net/ * Facebook: https://www.facebook.com/ctrlplusn.net/ * */ CKEDITOR.plugins.add('videoembed', { icons: 'videoembed', lang: 'it,en', version: 1.1, init: function (editor) { // Command editor.addCommand('videoembed', new CKEDITOR.dialogCommand('videoembedDialog')); // Toolbar button editor.ui.addButton('VideoEmbed', { label: editor.lang.videoembed.button, command: 'videoembed', toolbar: 'insert' }); // Dialog window CKEDITOR.dialog.add('videoembedDialog', this.path + 'dialogs/videoembedDialog.js'); } });
Version data entries
5 entries across 5 versions & 1 rubygems