fixed jQuery.dir regression introduced with 1.4 *untils patch that errored when traversing XHTML text nodes with an until test
This commit is contained in:
parent
09ef5b7598
commit
28ce15979f
2 changed files with 4 additions and 2 deletions
|
@ -235,7 +235,7 @@ jQuery.extend({
|
|||
|
||||
dir: function( elem, dir, until ) {
|
||||
var matched = [], cur = elem[dir];
|
||||
while ( cur && cur.nodeType !== 9 && (until === undefined || !jQuery( cur ).is( until )) ) {
|
||||
while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) {
|
||||
if ( cur.nodeType === 1 ) {
|
||||
matched.push( cur );
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue