Ticket #2649: 2649.patch

File 2649.patch, 1.1 KB (added by Martin Kou, 15 years ago)
  • _whatsnew.html

     
    110110                        where new elements were inserted at the beginning of the content in IE.</li>
    111111                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2634">#2634</a>] Fixed two obsolete
    112112                        references to Array::AddItem() instances still in the code.</li>
     113                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2649">#2649</a>] Fixed a JavaScript error
     114                        in IE when user tries to search with the "Match whole word" option enabled and the matched word is
     115                        at exactly the end of document.</li>
    113116        </ul>
    114117        <p>
    115118                <a href="_whatsnew_history.html">See previous versions history</a></p>
  • editor/dialog/fck_replace.html

     
    420420 */
    421421function CheckIsWordSeparator( c )
    422422{
     423        if ( !c )
     424                return true;
    423425        var code = c.charCodeAt( 0 );
    424426        if ( code >= 9 && code <= 0xd )
    425427                return true;
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy