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:
0468e31
)
Fixed a missing semicolon. Fixes jQuery bug #3927.
author
John Resig
<jeresig@gmail.com>
Tue, 20 Jan 2009 19:58:19 +0000
(19:58 +0000)
committer
John Resig
<jeresig@gmail.com>
Tue, 20 Jan 2009 19:58:19 +0000
(19:58 +0000)
src/selector.js
patch
|
blob
|
history
diff --git
a/src/selector.js
b/src/selector.js
index
d7d56c2
..
6b68cb2
100644
(file)
--- a/
src/selector.js
+++ b/
src/selector.js
@@
-832,7
+832,7
@@
var posProcess = function(selector, context){
}
return Sizzle.filter( later, tmpSet );
-}
+};
// EXPOSE
jQuery.find = Sizzle;