git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
950b5d6
)
Remove the need for the return in sizzle-jquery and just remove the attempt to expose...
author
jeresig
<jeresig@gmail.com>
Tue, 2 Mar 2010 02:56:08 +0000
(21:56 -0500)
committer
jeresig
<jeresig@gmail.com>
Tue, 2 Mar 2010 02:56:08 +0000
(21:56 -0500)
Makefile
patch
|
blob
|
history
src/sizzle-jquery.js
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
e026d9e
..
612fce1
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-61,7
+61,7
@@
${JQ}: selector ${MODULES}
selector: ${DIST_DIR} init
@@echo "Building selector code from Sizzle"
- @@sed '/EXPOSE/r src/sizzle-jquery.js' src/sizzle/sizzle.js > src/selector.js
+ @@sed '/EXPOSE/r src/sizzle-jquery.js' src/sizzle/sizzle.js | grep -v window.Sizzle > src/selector.js
lint: ${JQ}
@@echo "Checking jQuery against JSLint..."
diff --git
a/src/sizzle-jquery.js
b/src/sizzle-jquery.js
index
8265410
..
99f4d29
100644
(file)
--- a/
src/sizzle-jquery.js
+++ b/
src/sizzle-jquery.js
@@
-5,5
+5,3
@@
jQuery.unique = Sizzle.uniqueSort;
jQuery.text = getText;
jQuery.isXMLDoc = isXML;
jQuery.contains = contains;
-
-return;