Ticket #3950: 3950.patch

File 3950.patch, 1.5 KB (added by Garry Yao, 15 years ago)
  • _source/plugins/selection/plugin.js

     
    637637                                                        {
    638638                                                                var startContainer = range.startContainer,
    639639                                                                        startOffset = range.startOffset;
     640                                                                // Limit the fix only to non-block elements.(#3950)
    640641                                                                if ( startOffset == ( startContainer.getChildCount ?
    641                                                                         startContainer.getChildCount() : startContainer.getLength() ) )
     642                                                                         startContainer.getChildCount() : startContainer.getLength() )
     643                                                                         && !startContainer.isBlockBoundary() )
    642644                                                                        range.setStartAfter( startContainer );
    643645                                                                else break;
    644646                                                        }
  • CHANGES.html

     
    130130                <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>
    131131                <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>
    132132                <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>
    133134        </ul>
    134135        <h3>
    135136                CKEditor 3.0 RC</h3>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy