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... |
| 1 | Well it seems to be a selection problem from IE 9+ |