File tree Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ CKEditor 4 Changelog
5
5
6
6
Fixed Issues:
7
7
8
+ * [ #10910 ] ( http://dev.ckeditor.com/ticket/10910 ) : Fixed error thrown on Internet Explorer 9 in Compatibility Mode.
8
9
* [ #10868 ] ( http://dev.ckeditor.com/ticket/10868 ) : Prevent from Internet Explorer 8 crashing when applying a cite style.
9
10
* [ #10915 ] ( http://dev.ckeditor.com/ticket/10915 ) : CSS filter in Kama skin pull request.
10
11
* [ #10914 ] ( http://dev.ckeditor.com/ticket/10914 ) : Plugins indentlist and indentblock included into building config.
Original file line number Diff line number Diff line change 964
964
endIndex = index - 1 ;
965
965
else if ( position < 0 )
966
966
startIndex = index + 1 ;
967
- else {
968
- // IE9 report wrong measurement with compareEndPoints when range anchors between two BRs.
969
- // e.g. <p>text<br />^<br /></p> (#7433)
970
- if ( CKEDITOR . env . ie9Compat && child . tagName == 'BR' ) {
971
- // "Fall back" to w3c selection.
972
- var sel = doc . defaultView . getSelection ( ) ;
973
- return {
974
- container : sel [ start ? 'anchorNode' : 'focusNode' ] ,
975
- offset : sel [ start ? 'anchorOffset' : 'focusOffset' ] } ;
976
- } else
977
- return { container : parent , offset : getNodeIndex ( child ) } ;
978
- }
967
+ else
968
+ return { container : parent , offset : getNodeIndex ( child ) } ;
979
969
}
980
970
981
971
// All childs are text nodes,
You can’t perform that action at this time.
0 commit comments