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