Changeset 1143

Show
Ignore:
Timestamp:
2007-11-30 17:35:24 (2 years ago)
Author:
fredck
Message:

Small fix to [1124]. The scroll was a bit crazy on Safari when hitting Enter inside blockquotes or lists.

Files:
1 modified

Legend:

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

    r1124 r1143  
    969969                // Appends the offsets for the entire element hierarchy. 
    970970                offset += element.offsetTop ; 
    971                 while ( ( element = element.parentNode ) ) 
     971                while ( ( element = element.offsetParent ) ) 
    972972                        offset += element.offsetTop || 0 ; 
    973973