Changes between Initial Version and Version 1 of Ticket #10791, comment 1
- Timestamp:
- Sep 5, 2013, 8:10:19 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10791, comment 1
initial v1 1 I pin pointed the problem! 2 3 Selection.js:775-786 4 5 {{{ 6 if ( !isMSSelection ) { 7 var anchorNode = sel && sel.anchorNode; 8 9 if ( anchorNode ) 10 anchorNode = new CKEDITOR.dom.node( anchorNode ); 11 12 if ( active && active.equals( this.document.getDocumentElement() ) && 13 anchorNode && ( root.equals( anchorNode ) || root.contains( anchorNode ) ) ) 14 fixInitialSelection( root, null, true ); 15 } 16 }}} 17 18 fixInitialSelection() is never called for some reason...