diff options
author | John Resig <jeresig@gmail.com> | 2009-01-07 14:31:28 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-01-07 14:31:28 +0000 |
commit | f9e0b1ed7a5f252bb58aba9bdfb96653af2b4c1b (patch) | |
tree | fa4e6daa9da75f26503d007661d387ae7a71a7bb | |
parent | d8706c5ac95a0e17ac0bb84d5ff3ee7a6eb38161 (diff) | |
download | jquery-f9e0b1ed7a5f252bb58aba9bdfb96653af2b4c1b.tar.gz jquery-f9e0b1ed7a5f252bb58aba9bdfb96653af2b4c1b.zip |
Merged in a missing argument from Sizzle.
-rw-r--r-- | src/selector.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selector.js b/src/selector.js index 8d11237aa..eb545174e 100644 --- a/src/selector.js +++ b/src/selector.js @@ -717,7 +717,7 @@ if ( document.querySelectorAll ) (function(){ if ( !seed && context.nodeType === 9 ) { try { - return makeArray( context.querySelectorAll(query) ); + return makeArray( context.querySelectorAll(query), extra ); } catch(e){} } |