Changeset 252
- Timestamp:
- 2007-04-16 22:06:59 (3 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 modified
-
editor/_source/internals/fck_ie.js (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/internals/fck_ie.js
r237 r252 394 394 oLink.href = url ; 395 395 oLink.innerHTML = sInnerHtml ; // Restore the innerHTML. 396 397 // If the last child is a <br> move it outside the link or it will be too easy to select this link again #338 398 if (oLink.lastChild.nodeName == 'BR' ) 399 { 400 // We move the br as a sibling after the link: 401 var oBR = oLink.lastChild ; 402 oLink.removeChild( oBR ) ; 403 // There's no insertAfter, so we insert before the next sibling 404 oLink.parentNode.insertBefore( oBR, oLink.nextSibling ); 405 } 406 396 407 return oLink ; 397 408 } -
FCKeditor/trunk/_whatsnew.html
r247 r252 52 52 was being lost for images or comments only HTML inserted directly in the editor 53 53 source or loaded in the editor.</li> 54 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/338">#338</a>] Creating links in 55 lines separated by <br> in IE can lead to a merge of the links.</li> 54 56 </ul> 55 57 <h3>