Ticket #3950: 3950.patch
File 3950.patch, 1.5 KB (added by , 14 years ago) |
---|
-
_source/plugins/selection/plugin.js
637 637 { 638 638 var startContainer = range.startContainer, 639 639 startOffset = range.startOffset; 640 // Limit the fix only to non-block elements.(#3950) 640 641 if ( startOffset == ( startContainer.getChildCount ? 641 startContainer.getChildCount() : startContainer.getLength() ) ) 642 startContainer.getChildCount() : startContainer.getLength() ) 643 && !startContainer.isBlockBoundary() ) 642 644 range.setStartAfter( startContainer ); 643 645 else break; 644 646 } -
CHANGES.html
130 130 <li><a href="http://dev.fckeditor.net/ticket/3742">#3742</a> : Fixed wrong dialog layout for dialogs without tab bar in IE RTL mode .</li> 131 131 <li><a href="http://dev.fckeditor.net/ticket/3671">#3671</a> : Fixed body fixing should be applied to the real type under fake elements.</li> 132 132 <li><a href="http://dev.fckeditor.net/ticket/3836">#3836</a> : Fixed remove list in enterMode=BR will merge sibling text to one line.</li> 133 <li><a href="http://dev.fckeditor.net/ticket/3950">#3950</a> : Fixed table column insertion incorrect when selecting empty cell area.</li> 133 134 </ul> 134 135 <h3> 135 136 CKEditor 3.0 RC</h3>