Ticket #3181: 3181.patch
File 3181.patch, 1.3 KB (added by , 14 years ago) |
---|
-
_whatsnew.html
44 44 <ul> 45 45 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2821">#2821</a>] Configuration 46 46 items that used floating point numbers were parsed as integers.</li> 47 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/3181">#3181</a>] Node selection 48 could raise an error in IE8.</li> 47 49 <li>Language file updates for the following languages: 48 50 <ul> 49 51 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2849">#2849</a>] Lithuanian</li> -
editor/_source/internals/fckselection_ie.js
108 108 // Try to select the node as a control. 109 109 oRange = FCK.EditorDocument.body.createControlRange() ; 110 110 oRange.addElement( node ) ; 111 oRange.select() ; 111 112 } 112 113 catch(e) 113 114 { 114 115 // If failed, select it as a text range. 115 116 oRange = FCK.EditorDocument.body.createTextRange() ; 116 117 oRange.moveToElementText( node ) ; 118 oRange.select() ; 117 119 } 118 120 119 oRange.select() ;120 121 } ; 121 122 122 123 FCKSelection.Collapse = function( toStart )