diff options
author | jeresig <jeresig@gmail.com> | 2010-10-22 01:48:32 -0400 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2010-10-22 01:48:32 -0400 |
commit | d9a3e0080a4ffe472a2ee4458b223fb1feb8021c (patch) | |
tree | 54ab6bb4c45776299193c3e0187d1cd45af55780 /src/sizzle-jquery.js | |
parent | 424500bcf068a234b13cd9ef33d94580c35eeb86 (diff) | |
download | jquery-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.js | 3 |
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; |