Sha256: b558b12cee430bf13ad1f886c6f3df405dc3306afc17e5e9e0fd2d2019c033dd

Contents?: true

Size: 1.19 KB

Versions: 11

Compression:

Stored size: 1.19 KB

Contents

CKEDITOR.plugins.add('delete_content', {
    icons:'deletecontent',
    init:function (editor) {
        editor.ui.addButton('DeleteContent', {
            label:'Remove this content from the page (It will remain in Content Library)',
            command:'deleteContent',
            toolbar:'tools'
        });

        editor.addCommand('deleteContent', new CKEDITOR.dialogCommand('deleteContent'));

        CKEDITOR.dialog.add('deleteContent', function (editor) {
            return {
                title:'Remove Content',
                minWidth:300,
                minHeight:100,
                contents:[
                    {
                        id:'tab1',
                        label:'Confirm Delete',
                        elements:[
                            {
                                type:'html',
                                html:'<p>Do you want to remove this content from the page?</p><br /><p>(It will remain in the content library)</p>'
                            }
                        ]
                    }
                ],

                onOk:function () {
                    $.cms_editor.deleteContent();
                }
            };
        });
    }
});

Version data entries

11 entries across 11 versions & 2 rubygems

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