Sha256: c229dc4efb44b3d0091a76f7fd8276a2dfd4f5b3707072db72bb2727cdf43840

Contents?: true

Size: 801 Bytes

Versions: 11

Compression:

Stored size: 801 Bytes

Contents

CKEDITOR.plugins.add('move_content', {
    icons:'movecontentup,movecontentdown',
    init:function (editor) {
        editor.ui.addButton('MoveContentUp', {
            label:'Move this content up',
            command:'moveContentUp',
            toolbar:'tools'
        });
        editor.ui.addButton('MoveContentDown', {
            label:'Move this content down.',
            command:'moveContentDown',
            toolbar:'tools'
        });
        editor.addCommand('moveContentDown', {
            exec:function (editor) {
                $.cms_editor.moveContent(editor, 'move-down');
            }
        });
        editor.addCommand('moveContentUp', {
            exec:function (editor) {
                $.cms_editor.moveContent(editor, 'move-up');
            }
        });
    }
});

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
browsercms-artirix-4.0.4 app/assets/javascripts/ckeditor/plugins/move_content/plugin.js
browsercms-artirix-4.0.3.3 app/assets/javascripts/ckeditor/plugins/move_content/plugin.js
browsercms-artirix-4.0.3.2 app/assets/javascripts/ckeditor/plugins/move_content/plugin.js
browsercms-artirix-4.0.3.1 app/assets/javascripts/ckeditor/plugins/move_content/plugin.js
browsercms-artirix-4.0.3 app/assets/javascripts/ckeditor/plugins/move_content/plugin.js
browsercms-artirix-4.0.2 app/assets/javascripts/ckeditor/plugins/move_content/plugin.js
browsercms-artirix-4.0.1.1 app/assets/javascripts/ckeditor/plugins/move_content/plugin.js
browsercms-artirix-4.0.0.rc1.art4 app/assets/javascripts/ckeditor/plugins/move_content/plugin.js
browsercms-4.0.0.rc1 app/assets/javascripts/ckeditor/plugins/move_content/plugin.js
browsercms-4.0.0.beta app/assets/javascripts/ckeditor/plugins/move_content/plugin.js
browsercms-4.0.0.alpha app/assets/javascripts/ckeditor/plugins/move_content/plugin.js