Tagged the Sizzle 1.0 release.
This commit is contained in:
parent
a37ca9e905
commit
883450b702
1 changed files with 2 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*!
|
/*!
|
||||||
* Sizzle CSS Selector Engine - v0.9.3
|
* Sizzle CSS Selector Engine - v1.0
|
||||||
* Copyright 2009, The Dojo Foundation
|
* Copyright 2009, The Dojo Foundation
|
||||||
* Released under the MIT, BSD, and GPL Licenses.
|
* Released under the MIT, BSD, and GPL Licenses.
|
||||||
* More information: http://sizzlejs.com/
|
* More information: http://sizzlejs.com/
|
||||||
|
@ -950,7 +950,6 @@ var posProcess = function(selector, context){
|
||||||
|
|
||||||
// EXPOSE
|
// EXPOSE
|
||||||
jQuery.find = Sizzle;
|
jQuery.find = Sizzle;
|
||||||
jQuery.filter = Sizzle.filter;
|
|
||||||
jQuery.expr = Sizzle.selectors;
|
jQuery.expr = Sizzle.selectors;
|
||||||
jQuery.expr[":"] = jQuery.expr.filters;
|
jQuery.expr[":"] = jQuery.expr.filters;
|
||||||
|
|
||||||
|
@ -968,7 +967,7 @@ Sizzle.selectors.filters.animated = function(elem){
|
||||||
}).length;
|
}).length;
|
||||||
};
|
};
|
||||||
|
|
||||||
jQuery.multiFilter = function( expr, elems, not ) {
|
jQuery.filter = jQuery.multiFilter = function( expr, elems, not ) {
|
||||||
if ( not ) {
|
if ( not ) {
|
||||||
expr = ":not(" + expr + ")";
|
expr = ":not(" + expr + ")";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue