Changeset 4363
- Timestamp:
- 2009-10-13 21:10:42 (2 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 7 edited
-
CHANGES.html (modified) (1 diff)
-
_source/core/config.js (modified) (1 diff)
-
_source/plugins/font/plugin.js (modified) (1 diff)
-
_source/plugins/format/plugin.js (modified) (1 diff)
-
_source/plugins/preview/plugin.js (modified) (1 diff)
-
_source/plugins/stylescombo/plugin.js (modified) (1 diff)
-
_source/plugins/wysiwygarea/plugin.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r4362 r4363 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> -
CKEditor/trunk/_source/core/config.js
r4326 r4363 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', -
CKEditor/trunk/_source/plugins/font/plugin.js
r4036 r4363 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 }, -
CKEditor/trunk/_source/plugins/format/plugin.js
r4036 r4363 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 }, -
CKEditor/trunk/_source/plugins/preview/plugin.js
r4174 r4363 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() + -
CKEditor/trunk/_source/plugins/stylescombo/plugin.js
r4036 r4363 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 }, -
CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js
r4354 r4363 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' ) +
Note: See TracChangeset
for help on using the changeset viewer.
