mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Additional reduction per @Raynos suggestion. Thanks!
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
This commit is contained in:
parent
2af3642cd5
commit
df254d47e4
@ -174,14 +174,9 @@ function isDisconnected( node ) {
|
||||
return !node || !node.parentNode || node.parentNode.nodeType === 11;
|
||||
}
|
||||
|
||||
function nth( cur, dir ) {
|
||||
var num = 0;
|
||||
function sibling( cur, dir ) {
|
||||
while ( cur = cur[ dir ], cur.nodeType !== 1 ) {}
|
||||
|
||||
for ( ; cur; cur = cur[dir] ) {
|
||||
if ( cur.nodeType === 1 && num++ === 1 ) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return cur;
|
||||
}
|
||||
|
||||
@ -197,10 +192,10 @@ jQuery.each({
|
||||
return jQuery.dir( elem, "parentNode", until );
|
||||
},
|
||||
next: function( elem ) {
|
||||
return nth( elem, "nextSibling" );
|
||||
return sibling( elem, "nextSibling" );
|
||||
},
|
||||
prev: function( elem ) {
|
||||
return nth( elem, "previousSibling" );
|
||||
return sibling( elem, "previousSibling" );
|
||||
},
|
||||
nextAll: function( elem ) {
|
||||
return jQuery.dir( elem, "nextSibling" );
|
||||
|
Loading…
Reference in New Issue
Block a user