Changeset 1051
- Timestamp:
- 10/30/07 14:04:36 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/_source/internals/fckdomtools.js
r1048 r1051 245 245 GetNextSourceElement : function( currentNode, ignoreSpaceTextOnly, stopSearchElements, ignoreElements ) 246 246 { 247 while( ( currentNode = this.GetNextSourceNode( currentNode, true ) ) ) // Only one "=".247 while( ( currentNode = this.GetNextSourceNode( currentNode, false ) ) ) // Only one "=". 248 248 { 249 249 if ( currentNode.nodeType == 1 ) … … 252 252 break ; 253 253 254 if ( !ignoreElements || !currentNode.nodeName.IEquals( ignoreElements ) ) 255 return currentNode ; 254 if ( ignoreElements && currentNode.nodeName.IEquals( ignoreElements ) ) 255 return this.GetNextSourceElement( currentNode, ignoreSpaceTextOnly, stopSearchElements, ignoreElements ) ; 256 257 return currentNode ; 256 258 } 257 259 else if ( ignoreSpaceTextOnly && currentNode.nodeType == 3 && currentNode.nodeValue.RTrim().length > 0 )
Note: See TracChangeset
for help on using the changeset viewer.
