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:
32b523b
)
Added a fix for #891 (Using a /foo selector within a non-document context.)
author
John Resig
<jeresig@gmail.com>
Sat, 24 Mar 2007 03:00:03 +0000
(
03:00
+0000)
committer
John Resig
<jeresig@gmail.com>
Sat, 24 Mar 2007 03:00:03 +0000
(
03:00
+0000)
src/selector/selector.js
patch
|
blob
|
history
diff --git
a/src/selector/selector.js
b/src/selector/selector.js
index
d59a555
..
856e0f5
100644
(file)
--- a/
src/selector/selector.js
+++ b/
src/selector/selector.js
@@
-126,7
+126,7
@@
jQuery.extend({
t = t.substr(2,t.length);
// And the / root expression
- } else if ( !t.indexOf("/") ) {
+ } else if ( !t.indexOf("/") && !context.ownerDocument ) {
context = context.documentElement;
t = t.substr(1,t.length);
if ( t.indexOf("/") >= 1 )