diff options
author | John Resig <jeresig@gmail.com> | 2009-10-26 18:23:31 -0400 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-10-26 18:23:31 -0400 |
commit | 81f65ce33931831dc651c5d3ebf2b31b551b6b8b (patch) | |
tree | 7c0ec992c8f75eba0bbb91dae1f63d26c6f0e061 /src/sizzle-jquery.js | |
parent | bbffc99f7c60d42d4286786dfd6a43aa31d62ae2 (diff) | |
download | jquery-81f65ce33931831dc651c5d3ebf2b31b551b6b8b.tar.gz jquery-81f65ce33931831dc651c5d3ebf2b31b551b6b8b.zip |
Pull in the Sizzle library dynamically using a submodule and make it part of the jQuery build process.
Diffstat (limited to 'src/sizzle-jquery.js')
-rw-r--r-- | src/sizzle-jquery.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/sizzle-jquery.js b/src/sizzle-jquery.js new file mode 100644 index 000000000..6f2c86f20 --- /dev/null +++ b/src/sizzle-jquery.js @@ -0,0 +1,6 @@ +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.filters; +jQuery.unique = Sizzle.uniqueSort; + +return; |