Ticket #4111: 4111.patch
File 4111.patch, 1.8 KB (added by , 14 years ago) |
---|
-
_source/plugins/styles/plugin.js
315 315 // Probably the document end is reached, we need a marker node. 316 316 if ( !lastNode ) 317 317 { 318 lastNode = document.createText( '' ); 318 var marker; 319 lastNode = marker = document.createText( '' ); 319 320 lastNode.insertAfter( range.endContainer ); 320 321 } 321 322 // The detection algorithm below skips the contents inside bookmark nodes, so … … 336 337 // simpler. 337 338 if ( !lastNode ) 338 339 { 339 lastNode = document.createText( '' );340 lastNode = marker = document.createText( '' ); 340 341 lastNode.insertAfter( firstNode ); 341 342 } 342 343 } … … 497 498 } 498 499 } 499 500 500 // this._FixBookmarkStart( startNode ); 501 501 // Remove the temporary marking node.(#4111) 502 marker.remove(); 502 503 range.moveToBookmark( bookmark ); 503 504 } 504 505 -
CHANGES.html
185 185 <li><a href="http://dev.fckeditor.net/ticket/4075">#4075</a> : [IE6/7]Fixed apply custom inline style with "class" attribute failed.</li> 186 186 <li><a href="http://dev.fckeditor.net/ticket/4087">#4087</a> : [Firefox]Fixed extra blocks created on create list when full document selected.</li> 187 187 <li><a href="http://dev.fckeditor.net/ticket/4097">#4097</a> : No undo/redo support for fontColor and backgroundColor buttons.</li> 188 <li><a href="http://dev.fckeditor.net/ticket/4111">#4111</a> : Fixed apply block style after inline style applied on full document error.</li> 188 189 </ul> 189 190 <h3> 190 191 CKEditor 3.0 RC</h3>