Ticket #2469: 2469.patch
File 2469.patch, 1.3 KB (added by , 16 years ago) |
---|
-
_whatsnew.html
46 46 character inside text wasn't encoded in Opera and Safari.</li> 47 47 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2467">#2467</a>] Fixed JavaScript 48 48 error with the fit window command in source mode.</li> 49 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2469">#2469</a>] Fixed a minor 50 issue where FCK.SetData() may cause the editor to become unresponsive to the first click 51 after being defocused.</li> 49 52 </ul> 50 53 <p> 51 54 <a href="_whatsnew_history.html">See previous versions history</a></p> -
editor/_source/internals/fckselection_ie.js
253 253 254 254 FCKSelection.Restore = function() 255 255 { 256 if ( this.SelectionData ) 256 // Bug #2469: SelectionData.createRange becomes undefined after the editor 257 // iframe is changed by FCK.SetData(). 258 if ( this.SelectionData && this.SelectionData.createRange ) 257 259 { 258 260 FCK.IsSelectionChangeLocked = true ; 259 261