Changeset 2205 for FCKeditor/branches

Show
Ignore:
Timestamp:
2008-07-11 11:20:05 (5 months ago)
Author:
martinkou
Message:

Removed _fckdivincluded check.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • FCKeditor/branches/features/div_container/editor/_source/internals/fckdomtools.js

    r2204 r2205  
    10441044                        var path = new FCKElementPath( currentNode ) ; 
    10451045                        var blockLimit = path.BlockLimit ; 
    1046                         if ( blockLimit && blockLimit.nodeName.IEquals( 'div' ) && !blockLimit['_fckdivincluded'] && 
    1047                                         currentBlocks.indexOf( blockLimit ) == -1 ) 
     1046                        if ( blockLimit && blockLimit.nodeName.IEquals( 'div' ) && currentBlocks.indexOf( blockLimit ) == -1 ) 
    10481047                                currentBlocks.push( blockLimit ) ; 
    10491048