Changeset 526

Show
Ignore:
Timestamp:
2007-07-25 04:19:14 (18 months ago)
Author:
martinkou
Message:

Fixed #990 : Enter key is broken.

Files:
1 modified

Legend:

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

    r499 r526  
    3939                // If the node is a <pre>, ignore. Whitespaces in the beginning or tail of a <pre> tag 
    4040                // shows up as in HTML code so we shouldn't delete them. 
    41                 if ( node.tagName.toLowerCase() == 'pre' ) 
     41                if ( node.nodeType == 1 && node.tagName.toLowerCase() == 'pre' ) 
    4242                        return ; 
    4343                this.LTrimNode( node ) ;