Skip to content

Commit

Permalink
Merge branch 't/11147' into major
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Jasiun committed Nov 13, 2013
2 parents 7b7a63c + 8c7a99d commit ed68fde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/skin.js
Expand Up @@ -181,9 +181,9 @@

/** Sets the color of the editor user interface. This method accepts a color value in
* hexadecimal notation, with a `#` character (e.g. #ffffff).
*
*
* CKEDITOR.instances.editor1.setUiColor( '#ff00ff' );
*
*
* @method
* @member CKEDITOR.editor
* @param {String} color The desired editor UI color in hexadecimal notation.
Expand Down Expand Up @@ -244,7 +244,7 @@
for ( r = 0; r < replace.length; r++ )
content = content.replace( replace[ r ][ 0 ], replace[ r ][ 1 ] );

if ( CKEDITOR.env.ie )
if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 )
styleNodes[ id ].$.styleSheet.cssText += content;
else
styleNodes[ id ].$.innerHTML += content;
Expand Down

0 comments on commit ed68fde

Please sign in to comment.