Ticket #4194: 4194_2.patch
File 4194_2.patch, 4.2 KB (added by , 14 years ago) |
---|
-
_source/core/config.js
63 63 baseHref : '', 64 64 65 65 /** 66 * The CSS file to be used to apply style to the contents. It should66 * The CSS file(s) to be used to apply style to the contents. It should 67 67 * reflect the CSS used in the final pages where the contents are to be 68 68 * used. 69 * @type String 69 * @type String|Array 70 70 * @default '<CKEditor folder>/contents.css' 71 71 * @example 72 72 * config.contentsCss = '/css/mysitestyles.css'; 73 * config.contentsCss = ['/css/mysitestyles.css', '/css/anotherfile.css']; 73 74 */ 74 75 contentsCss : CKEDITOR.basePath + 'contents.css', 75 76 -
_source/plugins/font/plugin.js
36 36 37 37 panel : 38 38 { 39 css : [ config.contentsCss, CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ],39 css : [ CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ].concat( config.contentsCss ), 40 40 voiceLabel : lang.panelVoiceLabel 41 41 }, 42 42 -
_source/plugins/format/plugin.js
33 33 34 34 panel : 35 35 { 36 css : [ config.contentsCss, CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ],36 css : [ CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ].concat( config.contentsCss ), 37 37 voiceLabel : lang.panelVoiceLabel 38 38 }, 39 39 -
_source/plugins/preview/plugin.js
37 37 '<head>' + 38 38 baseTag + 39 39 '<title>' + editor.lang.preview + '</title>' + 40 '<link href="' + editor.config.contentsCss + '" type="text/css" rel="stylesheet" _cktemp="true"/>' + 40 '<link type="text/css" rel="stylesheet" href="' + 41 [].concat( editor.config.contentsCss ).join( '"><link type="text/css" rel="stylesheet" href="' ) + 42 '">' + 41 43 '</head>' + bodyHtml + 42 44 editor.getData() + 43 45 '</body></html>'; -
_source/plugins/stylescombo/plugin.js
26 26 27 27 panel : 28 28 { 29 css : [ config.contentsCss, CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ],29 css : [ CKEDITOR.getUrl( editor.skinPath + 'editor.css' ) ].concat( config.contentsCss ), 30 30 voiceLabel : lang.panelVoiceLabel 31 31 }, 32 32 -
_source/plugins/wysiwygarea/plugin.js
560 560 editor.config.docType + 561 561 '<html dir="' + editor.config.contentsLangDirection + '">' + 562 562 '<head>' + 563 '<link href="' + editor.config.contentsCss + '" type="text/css" rel="stylesheet" _fcktemp="true"/>' + 563 '<link type="text/css" rel="stylesheet" href="' + 564 [].concat( editor.config.contentsCss ).join( '"><link type="text/css" rel="stylesheet" href="' ) + 565 '">' + 564 566 '<style type="text/css" _fcktemp="true">' + 565 567 editor._.styles.join( '\n' ) + 566 568 '</style>'+ -
CHANGES.html
40 40 New features:</p> 41 41 <ul> 42 42 <li><a href="http://dev.fckeditor.net/ticket/4219">#4219</a> : Added fallback mechanism for config.language.</li> 43 <li><a href="http://dev.fckeditor.net/ticket/4194">#4194</a> : Added support for using multiple css stylesheets within the editor.</li> 43 44 </ul> 44 45 <p> 45 46 Fixed issues:</p>