Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 't/11350'
  • Loading branch information
Reinmar committed Dec 30, 2013
2 parents 6c6cbc2 + e04e231 commit 0552435
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -3,6 +3,7 @@ CKEditor 4 Changelog

## CKEditor 4.3.2

* [#11350](http://dev.ckeditor.com/ticket/11350): The default value of [`config.contentsCss`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-contentsCss) is affected by [`CKEDITOR.getUrl`](http://docs.ckeditor.com/#!/api/CKEDITOR-method-getUrl).
* [#11097](http://dev.ckeditor.com/ticket/11097): Improved the [Autogrow](http://ckeditor.com/addon/autogrow) plugin performance when dealing with very big tables.
* [#11290](http://dev.ckeditor.com/ticket/11290): Removed redundant code in `sourcedialog` plugin.

Expand Down
4 changes: 2 additions & 2 deletions plugins/wysiwygarea/plugin.js
Expand Up @@ -608,10 +608,10 @@ CKEDITOR.config.disableNativeSpellChecker = true;
* config.contentsCss = '/css/mysitestyles.css';
* config.contentsCss = ['/css/mysitestyles.css', '/css/anotherfile.css'];
*
* @cfg {String/Array} [contentsCss=CKEDITOR.basePath + 'contents.css']
* @cfg {String/Array} [contentsCss=CKEDITOR.getUrl( 'contents.css' )]
* @member CKEDITOR.config
*/
CKEDITOR.config.contentsCss = CKEDITOR.basePath + 'contents.css';
CKEDITOR.config.contentsCss = CKEDITOR.getUrl( 'contents.css' );

/**
* Language code of the writting language which is used to author the editor
Expand Down

0 comments on commit 0552435

Please sign in to comment.