Skip to content

Commit ed68fde

Browse files
author
Piotr Jasiun
committed
Merge branch 't/11147' into major
2 parents 7b7a63c + 8c7a99d commit ed68fde

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/skin.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@
181181

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

247-
if ( CKEDITOR.env.ie )
247+
if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 )
248248
styleNodes[ id ].$.styleSheet.cssText += content;
249249
else
250250
styleNodes[ id ].$.innerHTML += content;

0 commit comments

Comments
 (0)