Ticket #3468: 3468.patch

File 3468.patch, 1.5 KB (added by Martin Kou, 15 years ago)
  • _source/core/dom/node.js

     
    281281                                guard = function( node )
    282282                                {
    283283                                        return !node.equals( guardNode );
    284                                 }
     284                                };
    285285                        }
    286286
    287287                        while ( !node && ( parent = ( parent || this ).getParent() ) )
     
    315315                                guard = function( node )
    316316                                {
    317317                                        return !node.equals( guardNode );
    318                                 }
     318                                };
    319319                        }
    320320
    321321                        while ( !node && ( parent = ( parent || this ).getParent() ) )
  • _source/core/dom/walker.js

     
    2929                                                return false;
    3030
    3131                                        return originalGuard( node );
    32                                 }
     32                                };
    3333                        }
    3434                        else
    3535                                guard = endNode;
  • _source/core/dom/element.js

     
    11651165                        if ( CKEDITOR.env.gecko && !CKEDITOR.env.quirks )
    11661166                        {
    11671167                                x += this.$.clientLeft ? 1 : 0;
    1168                                 y += this.$.clientTop ? 1 : 0;;
     1168                                y += this.$.clientTop ? 1 : 0;
    11691169                        }
    11701170
    11711171                        return { x : x, y : y };
     
    13541354                getChildCount : function()
    13551355                {
    13561356                        return this.$.childNodes.length;
    1357                 },
    1358 
     1357                }
    13591358        });
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy