Sha256: 4a9b9486b1edb5f6717b24e9feab636be0e31ec80bb17fcc0f7bfd90e49cad82

Contents?: true

Size: 761 Bytes

Versions: 2

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: 'fr,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

2 entries across 2 versions & 1 rubygems

Version Path
rails_admin_ui_layout_taris-1.3.5 app/assets/javascripts/ckeditor/plugins/videoembed/plugin.js
rails_admin_ui_layout_taris-1.3.4 app/assets/javascripts/ckeditor/plugins/videoembed/plugin.js