Sha256: d2d060b4e921522d63fde4770d10b228e4f5ae0cc3d6465c7e96669c6845a78e
Contents?: true
Size: 779 Bytes
Versions: 12
Compression:
Stored size: 779 Bytes
Contents
CKEDITOR.editorConfig = function( config ) { config.allowedContent = true; config.removeFormatTags = ""; config.protectedSource.push(/<r:([\S]+).*<\/r:\1>/g); config.protectedSource.push(/<r:[^>/]*\/>/g); //let paste from word be available // config.forcePasteAsPlainText = false; // 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
12 entries across 12 versions & 1 rubygems