aboutsummaryrefslogtreecommitdiffstats
path: root/src/sizzle-jquery.js
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2010-10-22 01:48:32 -0400
committerjeresig <jeresig@gmail.com>2010-10-22 01:48:32 -0400
commitd9a3e0080a4ffe472a2ee4458b223fb1feb8021c (patch)
tree54ab6bb4c45776299193c3e0187d1cd45af55780 /src/sizzle-jquery.js
parent424500bcf068a234b13cd9ef33d94580c35eeb86 (diff)
downloadjquery-d9a3e0080a4ffe472a2ee4458b223fb1feb8021c.tar.gz
jquery-d9a3e0080a4ffe472a2ee4458b223fb1feb8021c.zip
Fix broken selector code from last commit.
Diffstat (limited to 'src/sizzle-jquery.js')
-rw-r--r--src/sizzle-jquery.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sizzle-jquery.js b/src/sizzle-jquery.js
index 253aaa4fd..f15b08252 100644
--- a/src/sizzle-jquery.js
+++ b/src/sizzle-jquery.js
@@ -2,3 +2,6 @@ jQuery.find = Sizzle;
jQuery.expr = Sizzle.selectors;
jQuery.expr[":"] = jQuery.expr.filters;
jQuery.unique = Sizzle.uniqueSort;
+jQuery.text = Sizzle.getText;
+jQuery.isXMLDoc = Sizzle.isXML;
+jQuery.contains = Sizzle.contains;