aboutsummaryrefslogtreecommitdiffstats
path: root/src/selector.js
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2009-02-20 19:52:38 +0000
committerJohn Resig <jeresig@gmail.com>2009-02-20 19:52:38 +0000
commit883450b702d7818088ad1498473546d924a858de (patch)
tree7c6ba6c7dc5105ad8963b865aed4c921a06a21ff /src/selector.js
parenta37ca9e9058243169725982e91bce60801b9857d (diff)
downloadjquery-883450b702d7818088ad1498473546d924a858de.tar.gz
jquery-883450b702d7818088ad1498473546d924a858de.zip
Tagged the Sizzle 1.0 release.
Diffstat (limited to 'src/selector.js')
-rw-r--r--src/selector.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/selector.js b/src/selector.js
index 3e1d7115d..a0b407724 100644
--- a/src/selector.js
+++ b/src/selector.js
@@ -1,5 +1,5 @@
/*!
- * Sizzle CSS Selector Engine - v0.9.3
+ * Sizzle CSS Selector Engine - v1.0
* Copyright 2009, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
* More information: http://sizzlejs.com/
@@ -950,7 +950,6 @@ var posProcess = function(selector, context){
// EXPOSE
jQuery.find = Sizzle;
-jQuery.filter = Sizzle.filter;
jQuery.expr = Sizzle.selectors;
jQuery.expr[":"] = jQuery.expr.filters;
@@ -968,7 +967,7 @@ Sizzle.selectors.filters.animated = function(elem){
}).length;
};
-jQuery.multiFilter = function( expr, elems, not ) {
+jQuery.filter = jQuery.multiFilter = function( expr, elems, not ) {
if ( not ) {
expr = ":not(" + expr + ")";
}