Ticket #3891: 3891.patch
File 3891.patch, 1.4 KB (added by , 14 years ago) |
---|
-
_source/plugins/styles/plugin.js
1181 1181 // retrieving its final format. 1182 1182 var temp = new CKEDITOR.dom.element( 'span' ); 1183 1183 temp.setAttribute( 'style', unparsedCssText ); 1184 return temp.getAttribute( 'style' ); 1184 var styleText = temp.getAttribute( 'style' ); 1185 // IE will leave a single semicolon when failed to parse the style text.(#3891) 1186 return styleText == ';' ? '' : styleText; 1185 1187 } 1186 1188 1187 1189 function applyStyle( document, remove ) -
CHANGES.html
145 145 <li><a href="http://dev.fckeditor.net/ticket/3951">#3951</a> : Reset size and lock ratio options were not accessible in Image dialog.</li> 146 146 <li><a href="http://dev.fckeditor.net/ticket/3921">#3921</a> : Fixed Container scroll issue on IE7.</li> 147 147 <li><a href="http://dev.fckeditor.net/ticket/3940">#3940</a> : Fixed list operation doesn't stop at table.</li> 148 <li><a href="http://dev.fckeditor.net/ticket/3891">#3891</a> : [IE] Fixed 'automatic' font color doesn't work.</li> 148 149 </ul> 149 150 <h3> 150 151 CKEditor 3.0 RC</h3>