Changeset 1928

Show
Ignore:
Timestamp:
2008-04-16 09:09:54 (3 months ago)
Author:
martinkou
Message:

Fixed #2039 : Fixed the locking up issue in the Find/Replace dialog.

Location:
FCKeditor/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/_source/classes/fckdomrange.js

    r1803 r1928  
    460460                var addrStart = this._Range.startContainer ; 
    461461                var addrEnd = this._Range.endContainer ; 
    462                 while ( curStart && curStart.nodeType == 3 ) 
     462                while ( curStart && addrStart.nodeType == 3 ) 
    463463                { 
    464464                        bookmark.Start[0] += curStart.length ; 
     
    466466                        curStart = curStart.previousSibling ; 
    467467                } 
    468                 while ( curEnd && curEnd.nodeType == 3 ) 
     468                while ( curEnd && addrEnd.nodeType == 3 ) 
    469469                { 
    470470                        bookmark.End[0] += curEnd.length ; 
  • FCKeditor/trunk/_whatsnew.html

    r1922 r1928  
    5050                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2102">#2102</a>] Fixed FCKConfig.DocType 
    5151                        which stopped working in FCKeditor 2.6.</li> 
     52                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2039">#2039</a>] Fixed the locking up issue 
     53                        in the Find/Replace dialog.</li> 
    5254        </ul> 
    5355        <h3>