Changeset 1401

Show
Ignore:
Timestamp:
2008-01-24 07:10:52 (8 months ago)
Author:
martinkou
Message:

Fixed #503 : Fixed JavaScript syntax error in compressed JavaScript code in fckxhtml.js.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/trunk/editor/_source/internals/fckxhtml.js

    r1388 r1401  
    425425                        { 
    426426                                htmlNode = FCKDomTools.GetNextSibling( htmlNode ) ; 
    427                         } 
    428                         while ( htmlNode && htmlNode.nodeType == 3 && htmlNode.nodeValue.Trim().length == 0 ) 
    429                 } 
    430                 while ( htmlNode && htmlNode.nodeName.toLowerCase() == 'li' ) 
     427 
     428                        } while ( htmlNode && htmlNode.nodeType == 3 && htmlNode.nodeValue.Trim().length == 0 ) 
     429 
     430                }       while ( htmlNode && htmlNode.nodeName.toLowerCase() == 'li' ) 
    431431 
    432432                return newTarget ;