Merged in a fix from Sizzle for :not(:first).
This commit is contained in:
parent
ea78377760
commit
95094d1685
|
@ -182,6 +182,8 @@ Sizzle.filter = function(expr, set, inplace, not){
|
||||||
|
|
||||||
if ( !match ) {
|
if ( !match ) {
|
||||||
anyFound = found = true;
|
anyFound = found = true;
|
||||||
|
} else if ( match === true ) {
|
||||||
|
continue;
|
||||||
} else if ( match[0] === true ) {
|
} else if ( match[0] === true ) {
|
||||||
goodArray = [];
|
goodArray = [];
|
||||||
var last = null, elem;
|
var last = null, elem;
|
||||||
|
@ -411,6 +413,8 @@ var Expr = Sizzle.selectors = {
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
} else if ( Expr.match.POS.test( match[0] ) ) {
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return match;
|
return match;
|
||||||
|
|
Loading…
Reference in a new issue