Ticket #4230: 4230.patch
File 4230.patch, 1.3 KB (added by , 14 years ago) |
---|
-
_source/core/_bootstrap.js
22 22 hcDetect.appendTo( CKEDITOR.document.getHead() ); 23 23 24 24 // Update CKEDITOR.env. 25 if ( ( CKEDITOR.env.hc = ( hcDetect.getComputedStyle( 'background-image' ) == 'none' ) ) ) 25 // Catch exception needed sometimes for FF. (#4230) 26 try 27 { 28 CKEDITOR.env.hc = ( hcDetect.getComputedStyle( 'background-image' ) == 'none' ); 29 } 30 catch (e) 31 { 32 CKEDITOR.env.hc = false; 33 } 34 if ( CKEDITOR.env.hc ) 26 35 CKEDITOR.env.cssClass += ' cke_hc'; 27 36 28 37 hcDetect.remove(); -
CHANGES.html
245 245 copy and paste Flash content among different editor instances.</li> 246 246 <li><a href="http://dev.fckeditor.net/ticket/4193">#4193</a> : Automatic font color produced empty span on Firefox 3.5.</li> 247 247 <li><a href="http://dev.fckeditor.net/ticket/4186">#4186</a> : [FF] Fixed First open float panel cause host page scrollbar blinking.</li> 248 <li><a href="http://dev.fckeditor.net/ticket/4230">#4230</a> : HC detection caused js error.</li> 248 249 </ul> 249 250 <h3> 250 251 CKEditor 3.0 RC</h3>