diff options
author | jeresig <jeresig@gmail.com> | 2010-03-23 12:12:16 -0400 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2010-03-23 12:12:16 -0400 |
commit | 8effe3a7dee91c833cc1774646da9d743600c64c (patch) | |
tree | 1d8c9b10b5a7431ffb9c5c70cf4654e7c98d9438 /src/sizzle-jquery.js | |
parent | ba8938d444b9a49bdfb27213826ba108145c2e50 (diff) | |
download | jquery-8effe3a7dee91c833cc1774646da9d743600c64c.tar.gz jquery-8effe3a7dee91c833cc1774646da9d743600c64c.zip |
Made it so that you no longer need to build jQuery in order to run the test suite (but you'll still need a checkout of QUnit and Sizzle, at least).
Diffstat (limited to 'src/sizzle-jquery.js')
-rw-r--r-- | src/sizzle-jquery.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sizzle-jquery.js b/src/sizzle-jquery.js index 99f4d291b..f15b08252 100644 --- a/src/sizzle-jquery.js +++ b/src/sizzle-jquery.js @@ -2,6 +2,6 @@ jQuery.find = Sizzle; jQuery.expr = Sizzle.selectors; jQuery.expr[":"] = jQuery.expr.filters; jQuery.unique = Sizzle.uniqueSort; -jQuery.text = getText; -jQuery.isXMLDoc = isXML; -jQuery.contains = contains; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; |