Sha256: c314b3fa8ec4aef231f457039ecc6389712235518b8d817e7e6cd9a24af28c31

Contents?: true

Size: 788 Bytes

Versions: 8

Compression:

Stored size: 788 Bytes

Contents

(function () {
    var pluginName = 'code';
    // Регистрируем имя плагина .
    CKEDITOR.plugins.add(pluginName, {
        init: function (editor) { //Добавляем команду на нажатие кнопки
            editor.addCommand(pluginName, new CKEDITOR.dialogCommand('code'));
            //Указываем где скрипт окна диалога.
            CKEDITOR.dialog.add(pluginName, this.path + 'code/code.js');
            // Добавляем кнопочку
            editor.ui.addButton('Code', {
                label: 'Code', //Title кнопки
                command: pluginName,
                icon: this.path + 'images/code.png' //Путь к иконке
            });
        }
    });
})();

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
glebtv-ckeditor-4.0.2.7 vendor/assets/javascripts/ckeditor/plugins/code/plugin.js
glebtv-ckeditor-4.0.2.6 vendor/assets/javascripts/ckeditor/plugins/code/plugin.js
glebtv-ckeditor-4.0.2.5 vendor/assets/javascripts/ckeditor/plugins/code/plugin.js
glebtv-ckeditor-4.0.2.4 vendor/assets/javascripts/ckeditor/plugins/code/plugin.js
glebtv-ckeditor-4.0.2.2 vendor/assets/javascripts/ckeditor/plugins/code/plugin.js
glebtv-ckeditor-4.0.2.1 vendor/assets/javascripts/ckeditor/plugins/code/plugin.js
glebtv-ckeditor-4.0.2 vendor/assets/javascripts/ckeditor/plugins/code/plugin.js
glebtv-ckeditor-4.0.1 vendor/assets/javascripts/ckeditor/plugins/code/plugin.js