Sha256: f8bd4fab1a51117966edd014da4251b68719bc5bff4361cb931917b77ae0d0e8
Contents?: true
Size: 739 Bytes
Versions: 42
Compression:
Stored size: 739 Bytes
Contents
CKEDITOR.editorConfig = function( config ) { config.allowedContent = true; config.removeFormatTags = ""; config.protectedSource.push(/<r:([\S]+).*<\/r:\1>/g); config.protectedSource.push(/<r:[^>/]*\/>/g); config.forcePasteAsPlainText = true; // if you want to remove clipboard, you have to remove all of these: // clipboard, pastetext, pastefromword config.removePlugins = "save, newpage, preview, print, templates, forms, flash, smiley, language, pagebreak, iframe, bidi"; var startupMode = $.cookie('ckeditor.startupMode'); if (startupMode == 'source' || startupMode == 'wysiwyg' ) { config.startupMode = startupMode; } this.on('mode', function(){ $.cookie('ckeditor.startupMode', this.mode); }) };
Version data entries
42 entries across 42 versions & 1 rubygems