Changeset 4516
- Timestamp:
- 11/23/09 07:49:09 (4 years ago)
- Location:
- CKEditor/trunk
- Files:
-
- 2 edited
-
CHANGES.html (modified) (1 diff)
-
_source/plugins/selection/plugin.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CKEditor/trunk/CHANGES.html
r4497 r4516 65 65 <li><a href="http://dev.fckeditor.net/ticket/4651">#4651</a> : Fixed 'Deleted' and 'Inserted' text style is not rendering in wysiwyg mode and is wrong is source mode.</li> 66 66 <li><a href="http://dev.fckeditor.net/ticket/4654">#4654</a> : Fixed 'CKEDITOR.config.font_defaultLabel(fontSize_defaultLabel)' is not working.</li> 67 </ul>67 <li><a href="http://dev.fckeditor.net/ticket/3950">#3950</a> : Fixed table column insertion incorrect when selecting empty cell area.</li> 68 68 <h3> 69 69 CKEditor 3.0.1</h3> -
CKEditor/trunk/_source/plugins/selection/plugin.js
r4444 r4516 1 /*1 /* 2 2 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved. 3 3 For licensing, see LICENSE.html or http://ckeditor.com/license … … 641 641 var startContainer = range.startContainer, 642 642 startOffset = range.startOffset; 643 // Limit the fix only to non-block elements.(#3950) 643 644 if ( startOffset == ( startContainer.getChildCount ? 644 startContainer.getChildCount() : startContainer.getLength() ) ) 645 startContainer.getChildCount() : startContainer.getLength() ) 646 && !startContainer.isBlockBoundary() ) 645 647 range.setStartAfter( startContainer ); 646 648 else break;
Note: See TracChangeset
for help on using the changeset viewer.
