My instance of CKEditor does not do wordwrap when viewing source, it breaks the words instead - as can be seen on the picture.
My configuration is following:
Which is also strange is the fact, that the autogrow plugin has no effect and the textarea has _ALWAYS_ size 200px.
My configuration is following:
CKEDITOR.editorConfig = function(config) {
config.skin = 'v2';
config.toolbar = 'MyToolbar';
config.removePlugins = 'elementspath';
config.resize_enabled = true;
config.basicEntities = false;
config.entities = false;
config.forceSimpleAmpersand = true;
config.extraPlugins = 'autogrow';
config.autoGrow_onStartup = true;
config.autoGrow_maxHeight = 700;
config.toolbar_MyToolbar = [
{ name: 'styles', items : [ 'Format' ] },
{ name: 'basicstyles', items : [ 'Bold','Italic','Strike','-','RemoveFormat' ] },
{ name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote' ] },
{ name: 'links', items : [ 'Link' ] },
{ name: 'insert', items : [ 'Image','Table','HorizontalRule'] },
{ name: 'document', items : [ 'Source']}
];
config.startupMode = 'source';
};
Which is also strange is the fact, that the autogrow plugin has no effect and the textarea has _ALWAYS_ size 200px.
