Ticket #2469: 2469.patch

File 2469.patch, 1.3 KB (added by Martin Kou, 16 years ago)
  • _whatsnew.html

     
    4646                        character inside text wasn't encoded in Opera and Safari.</li>
    4747                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2467">#2467</a>] Fixed JavaScript
    4848                        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>
    4952        </ul>
    5053        <p>
    5154                <a href="_whatsnew_history.html">See previous versions history</a></p>
  • editor/_source/internals/fckselection_ie.js

     
    253253
    254254FCKSelection.Restore = function()
    255255{
    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 )
    257259        {
    258260                FCK.IsSelectionChangeLocked = true ;
    259261
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy